change tick on win32

master
Eduardo Bart 13 年前
父节点 2e5692da45
当前提交 5254b8d230

@ -92,9 +92,9 @@ int Platform::getTicks()
{
static unsigned long firstTick = 0;
if(!firstTick)
firstTick = GetTickCount64();
firstTick = GetTickCount();
return (uint32_t)(GetTickCount64() - firstTick);
return (uint32_t)(GetTickCount() - firstTick);
}
void Platform::sleep(unsigned long miliseconds)

正在加载...
取消
保存