coeng

diff src/gobj.cc @ 7:af24cfbdf9b6

adding collision detection
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 14 Feb 2015 10:08:00 +0200
parents 2f872a179914
children 8cce82794f90
line diff
     1.1 --- a/src/gobj.cc	Sat Feb 14 07:27:12 2015 +0200
     1.2 +++ b/src/gobj.cc	Sat Feb 14 10:08:00 2015 +0200
     1.3 @@ -78,9 +78,7 @@
     1.4  		sorted = true;
     1.5  	}
     1.6  
     1.7 -	printf("obj(%p) update\n", (void*)this);
     1.8  	for(size_t i=0; i<comp.size(); i++) {
     1.9 -		printf("  updating component: %s\n", comp[i]->get_name());
    1.10  		comp[i]->update(dt);
    1.11  	}
    1.12  }