aboutsummaryrefslogtreecommitdiff
path: root/scratcher~
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2007-10-29 18:58:45 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2007-10-29 18:58:45 +0000
commit88923be907188c31e4bcab5e2d9fcfa5754a8bfb (patch)
tree320735477eda59c95a0ba2e8c3b7c14e01004630 /scratcher~
parentde0a11880fc40b58372eb63cf6cf243aa685157a (diff)
Following this thread:
http://lists.puredata.info/pipermail/pd-dev/2007-10/009797.html I have changed the save functions so that they will save the name of the object that it was actually instantiated with. This allows objects with savefns to work properly with namespaces. This is a fix for this bug: http://sourceforge.net/tracker/index.php?&aid=1818219&group_id=55736&atid=478070 svn path=/trunk/externals/unauthorized/; revision=8902
Diffstat (limited to 'scratcher~')
-rw-r--r--scratcher~/scratcher~.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/scratcher~/scratcher~.c b/scratcher~/scratcher~.c
index 32e8e46..930ef93 100644
--- a/scratcher~/scratcher~.c
+++ b/scratcher~/scratcher~.c
@@ -283,7 +283,8 @@ static void scratcher_save(t_gobj *z, t_binbuf *b)
binbuf_addv(b, "ssiisiiiiff", gensym("#X"),gensym("obj"),
(t_int)x->x_obj.te_xpix, (t_int)x->x_obj.te_ypix,
- gensym("scratcher~"), x->x_size, x->x_width, x->x_height,
+ atom_getsymbol(binbuf_getvec(x->x_obj.te_binbuf)),
+ x->x_size, x->x_width, x->x_height,
x->x_sensibility, x->x_maxspeed, x->x_inertia );
binbuf_addv(b, ";");
}