aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2019-10-26 14:35:45 +0300
committerSergeanur <s.anureev@yandex.ua>2019-10-26 14:35:45 +0300
commitb6cb716452eaf9cdffed3055c032ca443e179f57 (patch)
tree1df0c78b41d85b787a33d1d53090f075af97af21 /src
parentf62555c28ef41eeb663cab2ad4616b3bdc3d0726 (diff)
Fixed CGameLogic::PassTime types
Diffstat (limited to 'src')
-rw-r--r--src/control/GameLogic.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/control/GameLogic.cpp b/src/control/GameLogic.cpp
index ed101cad..0ed5d5cf 100644
--- a/src/control/GameLogic.cpp
+++ b/src/control/GameLogic.cpp
@@ -30,7 +30,7 @@ CGameLogic::InitAtStartOfGame()
void
CGameLogic::PassTime(uint32 time)
{
- uint8 minutes, hours, days;
+ int32 minutes, hours, days;
minutes = time + CClock::GetMinutes();
hours = CClock::GetHours();