Remove Sleep functions and use Common version

This commit is contained in:
ζeh Matt 2023-06-27 22:11:52 +03:00
parent d8009291c4
commit e19738b5d3
No known key found for this signature in database
GPG Key ID: 18CE582C71A225B0
2 changed files with 0 additions and 10 deletions

View File

@ -379,11 +379,6 @@ namespace Platform
return u8"app_285330" PATH_SEPARATOR u8"depot_285331";
}
void Sleep(uint32_t ms)
{
usleep(ms * 1000);
}
void InitTicks()
{
}

View File

@ -912,11 +912,6 @@ namespace Platform
return static_cast<uint32_t>(runningDelta.QuadPart / _frequency);
}
void Sleep(uint32_t ms)
{
::Sleep(ms);
}
void InitTicks()
{
LARGE_INTEGER freq;