diff options
Diffstat (limited to 'src/game.cpp')
-rw-r--r-- | src/game.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game.cpp b/src/game.cpp index 789f87120..d9ad1cb47 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -151,7 +151,7 @@ QuitDialog *quitDialog = nullptr; Window *disconnectedDialog = nullptr; bool mStatsReUpdated = false; -const unsigned adjustDelay = 10; +const time_t adjustDelay = 10; /** * Initialize every game sub-engines in the right order @@ -730,7 +730,7 @@ void Game::adjustPerfomance() { mNextAdjustTime = time + adjustDelay; } - else if (mNextAdjustTime < CAST_U32(time)) + else if (mNextAdjustTime < time) { mNextAdjustTime = time + adjustDelay; |