Skip to content

Commit e2f9ef0

Browse files
committed
Server: forgot a semi-colon
1 parent 234c30c commit e2f9ef0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

VCMP-LUA/vcmpWrap/Classes/Server.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1331,7 +1331,7 @@ void Server::Init(sol::state* L) {
13311331
);
13321332

13331333
#ifdef _x32
1334-
usertype["tick"] = sol::property([]() -> uint32_t { return static_cast<uint32_t>(GetCurrentSysTime()) });
1334+
usertype["tick"] = sol::property([]() -> uint32_t { return static_cast<uint32_t>(GetCurrentSysTime()); });
13351335
#else
13361336
usertype["tick"] = sol::property([]() -> uint64_t { return GetCurrentSysTime(); });
13371337
#endif

0 commit comments

Comments
 (0)