From c2bc6bcf77d737ba52ecfb8f04baae2fb541a542 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Mon, 29 Aug 2016 02:16:00 +0300 Subject: Fix some cast issues. --- src/game.cpp | 4 ++-- src/gui/viewport.h | 2 +- src/net/ea/chatrecv.h | 1 + 3 files changed, 4 insertions(+), 3 deletions(-) (limited to 'src') 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; diff --git a/src/gui/viewport.h b/src/gui/viewport.h index 802ba8ffe..cbe48c7c4 100644 --- a/src/gui/viewport.h +++ b/src/gui/viewport.h @@ -238,7 +238,7 @@ class Viewport final : public WindowContainer, int mViewXmax; int mViewYmax; - time_t mLocalWalkTime; /**< Timestamp before the next walk can be sent. */ + time_t mLocalWalkTime; int mCameraRelativeX; int mCameraRelativeY; diff --git a/src/net/ea/chatrecv.h b/src/net/ea/chatrecv.h index 2904fc58b..c7e1c3aca 100644 --- a/src/net/ea/chatrecv.h +++ b/src/net/ea/chatrecv.h @@ -33,6 +33,7 @@ #include #include +#include namespace Net { -- cgit v1.2.3-70-g09d2