Update of /cvsroot/super-tux/supertux/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8572
Modified Files:
player.cpp
Log Message:
- typo fix
Index: player.cpp
===================================================================
RCS file: /cvsroot/super-tux/supertux/src/player.cpp,v
retrieving revision 1.99
retrieving revision 1.100
diff -u -d -r1.99 -r1.100
--- player.cpp 17 May 2004 17:01:21 -0000 1.99
+++ player.cpp 17 May 2004 17:05:22 -0000 1.100
@@ -822,7 +822,7 @@
}
/* Keep in-bounds, vertically: */
- if (base.y > sWorld::current()->get_level()->height * /*TILE_HEIGHT*/ 32)
+ if (base.y > World::current()->get_level()->height * /*TILE_HEIGHT*/ 32)
{
kill(KILL);
}
|