1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-20 21:43:06 +01:00

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
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;