[Super-tux-commit] supertux/src special.cpp,1.35,1.36
Brought to you by:
wkendrick
From: Ricardo C. <rm...@us...> - 2004-04-28 11:43:58
|
Update of /cvsroot/super-tux/supertux/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26465/src Modified Files: special.cpp Log Message: Fixed bug told in the mailing list: «- fireballs don't shoot if you are above screen (they're destroyed because they're off screen)» There is not point in removing them when they are above y=0. Index: special.cpp =================================================================== RCS file: /cvsroot/super-tux/supertux/src/special.cpp,v retrieving revision 1.35 retrieving revision 1.36 diff -u -d -r1.35 -r1.36 --- special.cpp 27 Apr 2004 21:00:58 -0000 1.35 +++ special.cpp 28 Apr 2004 11:43:47 -0000 1.36 @@ -107,7 +107,6 @@ if (base.x < scroll_x || base.x > scroll_x + screen->w || - base.y < 0 || base.y > screen->h || issolid(base.x + 4, base.y + 2) || issolid(base.x, base.y + 2) || |