From: Ricardo Cruz Date: Tue, 18 May 2004 17:46:05 +0000 (+0000) Subject: Fix bug reported by Ryan: in level smaller than 19, Tux would stay in dead move forever. X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=9efceff57abef5b13d2f480711cf9fa1a27ab1f4;p=supertux.git Fix bug reported by Ryan: in level smaller than 19, Tux would stay in dead move forever. SVN-Revision: 1256 --- diff --git a/src/player.cpp b/src/player.cpp index 64cd31783..dd02bc296 100644 --- a/src/player.cpp +++ b/src/player.cpp @@ -799,7 +799,7 @@ Player::is_dying() bool Player::is_dead() { - if(base.y > screen->h + scroll_y || + if(base.y > screen->h + scroll_y || base.y > World::current()->get_level()->height*32 || base.x < scroll_x - AUTOSCROLL_DEAD_INTERVAL) // can happen in auto-scrolling return true; else