From b8827f17107c537f192c60eef0d7840ba1d2d3e8 Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Mon, 12 Sep 2005 10:27:40 +0000 Subject: changed initialization functions accordingly minimal additions for buffers and exception handling change click modifier to shift (seems to work) small fixes for tutorial examples added flfeatures.h for compile-time version-specific feature detection added typed flext::NewAligned fixed severe Altivec bug adapted for pd-devel 0.39 - better handling of click callback slimmed object data structures update DSP methods for SndObj and STK classes - more compatible handling of attributes in patcher (hiding is now an option - define FLEXT_ATTRHIDE) better buffer checking svn path=/trunk/; revision=3537 --- externals/grill/flext/source/flext.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'externals/grill/flext/source/flext.cpp') diff --git a/externals/grill/flext/source/flext.cpp b/externals/grill/flext/source/flext.cpp index d37df1f0..70184bef 100644 --- a/externals/grill/flext/source/flext.cpp +++ b/externals/grill/flext/source/flext.cpp @@ -175,7 +175,7 @@ void flext_base::CbClick() {} #if FLEXT_SYS == FLEXT_SYS_PD void flext_base::cb_click(t_gobj *c,t_floatarg xpos,t_floatarg ypos,t_floatarg shift,t_floatarg ctrl,t_floatarg alt) { - if(alt) thisObject(c)->CbClick(); + if(shift) thisObject(c)->CbClick(); } #endif -- cgit v1.2.1