Update of /cvsroot/super-tux/supertux/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2465/src
Modified Files:
player.cpp
Log Message:
Fixed bug that was causing player's dead.
Don't think it is totally solved
Index: player.cpp
===================================================================
RCS file: /cvsroot/super-tux/supertux/src/player.cpp,v
retrieving revision 1.84
retrieving revision 1.85
diff -u -d -r1.84 -r1.85
--- player.cpp 7 May 2004 23:09:53 -0000 1.84
+++ player.cpp 8 May 2004 00:04:00 -0000 1.85
@@ -758,7 +758,7 @@
base.x = scroll_x;
if(base.x == scroll_x)
- if(issolid(base.x, base.y) || issolid(base.x, base.y+32))
+ if(issolid(base.x, base.y) || (size != SMALL && issolid(base.x, base.y+32)))
kill(KILL);
if(base.x + base.width > scroll_x + screen->w)
|