aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--externals/grill/flext/changes.txt1
-rw-r--r--externals/grill/flext/source/flsupport.cpp1
2 files changed, 2 insertions, 0 deletions
diff --git a/externals/grill/flext/changes.txt b/externals/grill/flext/changes.txt
index c28ea649..4e3796b6 100644
--- a/externals/grill/flext/changes.txt
+++ b/externals/grill/flext/changes.txt
@@ -25,6 +25,7 @@ Version history:
- fixed small problem with buffer->Valid() on startup
- fixed buffer overrun problems with flext::post, flext::error... (but still to improve)
- improved handling of patcher arguments
+- also initialize flext::sym_int as MakeSymbol("int") for PD (since the variable is there anyhow)
0.4.5:
- added some more SIMD functions
diff --git a/externals/grill/flext/source/flsupport.cpp b/externals/grill/flext/source/flsupport.cpp
index 1af2ab09..b322731f 100644
--- a/externals/grill/flext/source/flsupport.cpp
+++ b/externals/grill/flext/source/flsupport.cpp
@@ -57,6 +57,7 @@ void flext::Setup()
sym_bang = gensym("bang");
sym_list = gensym("list");
sym_signal = gensym("signal");
+ sym_int = gensym("int");
#elif FLEXT_SYS == FLEXT_SYS_MAX
sym_int = gensym("int");
sym_float = gensym("float");