From: Ricardo Cruz Date: Tue, 4 May 2004 16:03:48 +0000 (+0000) Subject: Fixed frame_ratio() workaround. X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=d26d9e424eed4bd31dfdf023a120e6ebf3270eba;p=supertux.git Fixed frame_ratio() workaround. SVN-Revision: 973 --- diff --git a/src/gameloop.cpp b/src/gameloop.cpp index a44cd8e90..fb3e55771 100644 --- a/src/gameloop.cpp +++ b/src/gameloop.cpp @@ -546,7 +546,6 @@ GameSession::run() draw(); - float overlap = 0.0f; while (exit_status == NONE) { /* Calculate the movement-factor */ @@ -569,19 +568,12 @@ GameSession::run() // determistic and not different on different machines if(!game_pause && !Menu::current()) { - frame_ratio *= game_speed; - frame_ratio += overlap; - while (frame_ratio > 0) - { - // Update the world - check_end_conditions(); - if (end_sequence == ENDSEQUENCE_RUNNING) - action(.5f); - else if(end_sequence == NO_ENDSEQUENCE) - action(1.0f); - frame_ratio -= 1.0f; - } - overlap = frame_ratio; + // Update the world + check_end_conditions(); + if (end_sequence == ENDSEQUENCE_RUNNING) + action(frame_ratio/2); + else if(end_sequence == NO_ENDSEQUENCE) + action(frame_ratio); } else {