change tick on win32

This commit is contained in:
Eduardo Bart 2011-03-20 20:16:38 -03:00
부모 2e5692da45
커밋 5254b8d230
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제

파일 보기

@ -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)