From 075b600b3a067d20ecd6322f7dc50bad01c8093d Mon Sep 17 00:00:00 2001 From: Stanislav Zhukov Date: Wed, 27 Jul 2016 06:55:21 +0800 Subject: [PATCH] Fix for Windows --- apps/openmw-mp/Script/API/TimerAPI.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/openmw-mp/Script/API/TimerAPI.hpp b/apps/openmw-mp/Script/API/TimerAPI.hpp index 153ffdacd..eec896f6e 100644 --- a/apps/openmw-mp/Script/API/TimerAPI.hpp +++ b/apps/openmw-mp/Script/API/TimerAPI.hpp @@ -35,7 +35,7 @@ namespace mwmp void Start(); void Restart(int msec); private: - long startTime, targetMsec; + double startTime, targetMsec; std::string publ, arg_types; std::vector args; Script *scr;