[PD-cvs] pd/src desire.c,1.1.2.217.2.24,1.1.2.217.2.25

Mathieu Bouchard matju at users.sourceforge.net
Tue Dec 5 08:26:07 CET 2006


Update of /cvsroot/pure-data/pd/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1904

Modified Files:
      Tag: desiredata
	desire.c 
Log Message:
fixed dumb mistake in use of SET macro


Index: desire.c
===================================================================
RCS file: /cvsroot/pure-data/pd/src/Attic/desire.c,v
retrieving revision 1.1.2.217.2.24
retrieving revision 1.1.2.217.2.25
diff -C2 -d -r1.1.2.217.2.24 -r1.1.2.217.2.25
*** desire.c	5 Dec 2006 07:04:13 -0000	1.1.2.217.2.24
--- desire.c	5 Dec 2006 07:26:01 -0000	1.1.2.217.2.25
***************
*** 286,290 ****
  		o->g_adix->dirtyc = 0;
  	}
! 	clock_delay(self->clock,50);
  }
  
--- 286,290 ----
  		o->g_adix->dirtyc = 0;
  	}
! 	clock_delay(self->clock,500);
  }
  
***************
*** 6281,6286 ****
  	t_text *o;
  	if (sscanf(name->s_name,"!x%lx",(long*)&o)<1) {pd_error(x,"gargamel was here"); return;}
! 	SET(x,(int)px);
! 	SET(y,(int)py);
  }
  static void canvas_object_delete(t_canvas *x, t_symbol *name) {
--- 6281,6286 ----
  	t_text *o;
  	if (sscanf(name->s_name,"!x%lx",(long*)&o)<1) {pd_error(x,"gargamel was here"); return;}
! 	o->x=(int)px; gobj_changed(o,"x");
! 	o->y=(int)py; gobj_changed(o,"y");
  }
  static void canvas_object_delete(t_canvas *x, t_symbol *name) {





More information about the Pd-cvs mailing list