We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 234c30c commit e2f9ef0Copy full SHA for e2f9ef0
VCMP-LUA/vcmpWrap/Classes/Server.cpp
@@ -1331,7 +1331,7 @@ void Server::Init(sol::state* L) {
1331
);
1332
1333
#ifdef _x32
1334
- usertype["tick"] = sol::property([]() -> uint32_t { return static_cast<uint32_t>(GetCurrentSysTime()) });
+ usertype["tick"] = sol::property([]() -> uint32_t { return static_cast<uint32_t>(GetCurrentSysTime()); });
1335
#else
1336
usertype["tick"] = sol::property([]() -> uint64_t { return GetCurrentSysTime(); });
1337
#endif
0 commit comments