summaryrefslogtreecommitdiff
path: root/src/game.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game.cpp')
-rw-r--r--src/game.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game.cpp b/src/game.cpp
index ef60b67c9..40d5478af 100644
--- a/src/game.cpp
+++ b/src/game.cpp
@@ -726,7 +726,7 @@ void Game::adjustPerfomance()
{
mNextAdjustTime = time + adjustDelay;
}
- else if (mNextAdjustTime < static_cast<unsigned>(time))
+ else if (mNextAdjustTime < CAST_U32(time))
{
mNextAdjustTime = time + adjustDelay;
@@ -1115,7 +1115,7 @@ void Game::updateHistory(const SDL_Event &event)
if (!localPlayer || !settings.attackType)
return;
- if (static_cast<int>(event.key.keysym.sym) != -1)
+ if (CAST_S32(event.key.keysym.sym) != -1)
{
bool old = false;