1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-26 08:14:38 +01:00

Upgrade platform_get_default_scale()

This commit is contained in:
Gymnasiast
2022-01-11 11:48:07 +01:00
parent f553268728
commit b826c0706a
6 changed files with 25 additions and 26 deletions

View File

@@ -137,6 +137,13 @@ namespace Platform
sanitised = String::Trim(sanitised);
return sanitised;
}
#ifndef __ANDROID__
float GetDefaultScale()
{
return 1;
}
#endif
} // namespace Platform
GamePalette gPalette;
@@ -208,13 +215,6 @@ void platform_sleep(uint32_t ms)
#endif
}
#ifndef __ANDROID__
float platform_get_default_scale()
{
return 1;
}
#endif
void core_init()
{
static bool initialised = false;