Update of /cvsroot/super-tux/supertux/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28599
Modified Files:
player.cpp
Log Message:
- moved default start position two tiles higher
Index: player.cpp
===================================================================
RCS file: /cvsroot/super-tux/supertux/src/player.cpp,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -d -r1.40 -r1.41
--- player.cpp 18 Apr 2004 11:09:55 -0000 1.40
+++ player.cpp 18 Apr 2004 15:08:27 -0000 1.41
@@ -71,7 +71,7 @@
// FIXME: Make the start position configurable via the levelfile
base.x = 100;
- base.y = 240;
+ base.y = 170;
base.xm = 0;
base.ym = 0;
previous_base = old_base = base;
@@ -136,7 +136,7 @@
Player::level_begin()
{
base.x = 100;
- base.y = 240;
+ base.y = 170;
base.xm = 0;
base.ym = 0;
previous_base = old_base = base;
|