From: Ricardo Cruz Date: Sat, 8 May 2004 00:04:00 +0000 (+0000) Subject: Fixed bug that was causing player's dead. X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=d483c303ec3dc4c43c73cb35efb1280885d3b117;p=supertux.git Fixed bug that was causing player's dead. Don't think it is totally solved SVN-Revision: 1036 --- diff --git a/src/player.cpp b/src/player.cpp index 179b533f0..d447def0c 100644 --- a/src/player.cpp +++ b/src/player.cpp @@ -758,7 +758,7 @@ Player::check_bounds() base.x = scroll_x; if(base.x == scroll_x) - if(issolid(base.x, base.y) || issolid(base.x, base.y+32)) + if(issolid(base.x, base.y) || (size != SMALL && issolid(base.x, base.y+32))) kill(KILL); if(base.x + base.width > scroll_x + screen->w)