[Super-tux-commit] supertux/src special.cpp,1.54,1.55
Brought to you by:
wkendrick
From: Ricardo C. <rm...@us...> - 2004-06-04 14:15:08
|
Update of /cvsroot/super-tux/supertux/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21461/src Modified Files: special.cpp Log Message: Fixed bullet position. Index: special.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/special.cpp,v retrieving revision 1.54 retrieving revision 1.55 diff -u -d -r1.54 -r1.55 --- special.cpp 31 May 2004 22:13:15 -0000 1.54 +++ special.cpp 4 Jun 2004 14:14:59 -0000 1.55 @@ -63,7 +63,7 @@ physic.set_velocity_x(-BULLET_XM + xm); } - base.y = pos.y + base.height/2; + base.y = pos.y; physic.set_velocity_y(-BULLET_STARTING_YM); old_base = base; kind = kind_; |