summaryrefslogtreecommitdiffstats
path: root/src/Bindings/LuaFunctions.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Bindings/LuaFunctions.h')
-rw-r--r--src/Bindings/LuaFunctions.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Bindings/LuaFunctions.h b/src/Bindings/LuaFunctions.h
index be1d9aaa9..929794893 100644
--- a/src/Bindings/LuaFunctions.h
+++ b/src/Bindings/LuaFunctions.h
@@ -2,11 +2,13 @@
#include "Logger.h"
#include <time.h>
+#include <chrono>
// tolua_begin
inline unsigned int GetTime()
{
- return (unsigned int)time(0);
+ // NB: For caveats, please see http://stackoverflow.com/a/14505248
+ return static_cast<unsigned int>(std::chrono::seconds(time(0)).count());
}
inline std::string GetChar( std::string & a_Str, unsigned int a_Idx)