From e42613a0f67adf41391491a5577b04dc4af07aeb Mon Sep 17 00:00:00 2001 From: lufinkey Date: Wed, 22 Oct 2014 17:55:35 -0400 Subject: [PATCH] Fixed freezing at "game" bug fixed a bug where the game would sit frozen on the stage after a match has ended --- Source/SmashBros/HUD.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/SmashBros/HUD.cpp b/Source/SmashBros/HUD.cpp index 6c1c7e5..02ac9b6 100755 --- a/Source/SmashBros/HUD.cpp +++ b/Source/SmashBros/HUD.cpp @@ -235,7 +235,7 @@ namespace SmashBros } currentTime->Update(gameTime); } - if(showFinishGame && (Global::getWorldTime()/100)>=finishGameTime) + if(showFinishGame && Global::getWorldTime()>=finishGameTime) { showFinishGame = false;