Update of /cvsroot/super-tux/supertux/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31155/src
Modified Files:
title.cpp
Log Message:
Ooops, looks like screen wasn't scrolling in the main menu.
Index: title.cpp
===================================================================
RCS file: /cvsroot/super-tux/supertux/src/title.cpp,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -d -r1.74 -r1.75
--- title.cpp 2 May 2004 22:17:08 -0000 1.74
+++ title.cpp 3 May 2004 13:57:39 -0000 1.75
@@ -222,7 +222,8 @@
tux->can_jump = true;
float last_tux_x_pos = tux->base.x;
- tux->action(frame_ratio);
+ session->get_world()->action(frame_ratio);
+
// disabled for now, since with the new jump code we easily get deadlocks
// Jump if tux stays in the same position for one loop, ie. if he is
|