diff options
author | Thomas Grill <xovo@users.sourceforge.net> | 2004-04-14 02:33:06 +0000 |
---|---|---|
committer | Thomas Grill <xovo@users.sourceforge.net> | 2004-04-14 02:33:06 +0000 |
commit | da706d653636e3bcc9470014079197bdecf0339c (patch) | |
tree | 7282b10fb4ab46a1db1c42f992e639bbd17d46bd | |
parent | 95f4822430c77098c32c475b32a7bc98f0015245 (diff) |
""
svn path=/trunk/; revision=1601
-rw-r--r-- | externals/grill/flext/changes.txt | 1 | ||||
-rw-r--r-- | externals/grill/flext/source/flsupport.cpp | 1 |
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"); |