1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-18 11:19:10 +00:00

Work towards killing TimeGetMs.

Only remaining uses are in pnAsyncCore stuff, and I'm not touching that
until the std::thread merge is figured out.
This commit is contained in:
Darryl Pogue
2014-05-11 18:45:22 -07:00
parent a3ae4201a2
commit a0da984cdc
8 changed files with 19 additions and 18 deletions

View File

@ -193,7 +193,7 @@ How to create a message sender/receiver:
static void SendPing (NetCli player) {
const uintptr_t msgPing[] = {
kMsgPing,
TimeGetMs(),
hsTimer::GetMilliSeconds<uint32_t>(),
};
NetCliSend(player, msgPing, arrsize(msgPing));
}