Revision: 10288 http://pure-data.svn.sourceforge.net/pure-data/?rev=10288&view=rev Author: mrpeach Date: 2008-09-16 18:34:03 +0000 (Tue, 16 Sep 2008)
Log Message: ----------- Added a trailing zero to the arguments of the setup function for the "dump" message. Fixes a bug that prevented tabdump2 from working as advertised.
Modified Paths: -------------- trunk/externals/moonlib/tabdump2.c
Modified: trunk/externals/moonlib/tabdump2.c =================================================================== --- trunk/externals/moonlib/tabdump2.c 2008-09-16 07:21:49 UTC (rev 10287) +++ trunk/externals/moonlib/tabdump2.c 2008-09-16 18:34:03 UTC (rev 10288) @@ -110,7 +110,7 @@ 0, sizeof(t_tabdump), 0, A_DEFSYM, 0); class_addbang(tabdump_class, (t_method)tabdump_bang); class_addmethod(tabdump_class, (t_method)tabdump_dump,gensym("dump"), - A_FLOAT,A_FLOAT); + A_FLOAT,A_FLOAT,0); class_addmethod(tabdump_class, (t_method)tabdump_set, gensym("set"), A_SYMBOL, 0);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.