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:
@@ -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()
|
||||
{
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user