[Super-tux-commit] supertux/src world.cpp,1.105,1.106
Brought to you by:
wkendrick
From: Matze B. <mat...@us...> - 2004-05-20 23:35:03
|
Update of /cvsroot/super-tux/supertux/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5239/src Modified Files: world.cpp Log Message: fixed bullet problems Index: world.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/world.cpp,v retrieving revision 1.105 retrieving revision 1.106 diff -u -d -r1.105 -r1.106 --- world.cpp 20 May 2004 23:25:30 -0000 1.105 +++ world.cpp 20 May 2004 23:34:53 -0000 1.106 @@ -395,7 +395,7 @@ { // We have detected a collision and now call the // collision functions of the collided objects. - (*j)->collision(&bullets[i], CO_BULLET, COLLISION_NORMAL); + (*j)->collision(bullets[i], CO_BULLET, COLLISION_NORMAL); bullets[i]->collision(CO_BADGUY); break; // bullet is invalid now, so break } |