Update of /cvsroot/super-tux/supertux/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23173/src
Modified Files:
special.cpp
Log Message:
There is no point in making a Y inferior to scroll_y checking, since bullets accel is down.
Fixes bug reported by unDEFER in the mailing list.
Index: special.cpp
===================================================================
RCS file: /cvsroot/super-tux/supertux/src/special.cpp,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -d -r1.65 -r1.66
--- special.cpp 26 Jul 2004 18:09:14 -0000 1.65
+++ special.cpp 10 Aug 2004 11:43:57 -0000 1.66
@@ -104,7 +104,7 @@
Sector::current()->camera->get_translation().y;
if (base.x < scroll_x ||
base.x > scroll_x + screen->w ||
- base.y < scroll_y ||
+// base.y < scroll_y ||
base.y > scroll_y + screen->h ||
life_count <= 0)
{
|