From: Ricardo Cruz Date: Tue, 10 Aug 2004 11:43:57 +0000 (+0000) Subject: There is no point in making a Y inferior to scroll_y checking, since bullets accel... X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=13b2baf22e0686299aa27982dad180779d00216b;p=supertux.git 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. SVN-Revision: 1731 --- diff --git a/src/special.cpp b/src/special.cpp index 0b37359e9..6d062c1af 100644 --- a/src/special.cpp +++ b/src/special.cpp @@ -104,7 +104,7 @@ Bullet::action(float elapsed_time) 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) {