Skip to content

Commit

Permalink
Fixed freezing at "game" bug
Browse files Browse the repository at this point in the history
fixed a bug where the game would sit frozen on the stage after a match
has ended
  • Loading branch information
lufinkey authored and lufinkey committed Oct 22, 2014
1 parent 944dfff commit e42613a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/SmashBros/HUD.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ namespace SmashBros
}
currentTime->Update(gameTime);
}
if(showFinishGame && (Global::getWorldTime()/100)>=finishGameTime)
if(showFinishGame && Global::getWorldTime()>=finishGameTime)
{
showFinishGame = false;

Expand Down

0 comments on commit e42613a

Please sign in to comment.