Changeset 40 for abuse/trunk/src/objects.cpp
- Timestamp:
- Mar 2, 2008, 12:52:07 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
abuse/trunk/src/objects.cpp
r39 r40 268 268 current_object = this; 269 269 void *m = mark_heap( TMP_SPACE ); 270 void *ret =eval_function( (lisp_symbol *)ns, NULL );270 (void)eval_function( (lisp_symbol *)ns, NULL ); 271 271 restore_heap( m, TMP_SPACE ); 272 272 } … … 734 734 else 735 735 { 736 view *v=controller();736 //view *v=controller(); 737 737 738 738 if (fade_count()) … … 931 931 int fxv=sfxvel(),fyv=sfyvel(); 932 932 fxv+=fxa; fyv+=fya; 933 int32_t xv=xvel()+xa+(fxv>>8);933 //int32_t xv=xvel()+xa+(fxv>>8); 934 934 set_xvel(xvel()+xa+(fxv>>8)); 935 935 set_yvel(yvel()+ya+(fyv>>8)); … … 1453 1453 int fxv=sfxvel(),fyv=sfyvel(); 1454 1454 fxv+=fxa; fyv+=fya; 1455 int32_t xv=xvel()+xa+(fxv>>8);1455 //int32_t xv=xvel()+xa+(fxv>>8); 1456 1456 set_xvel(xvel()+xa+(fxv>>8)); 1457 1457 set_yvel(yvel()+ya+(fyv>>8));
Note: See TracChangeset
for help on using the changeset viewer.