1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-30 18:25:16 +01:00

Use static initialization for Android class loader

This commit is contained in:
ζeh Matt
2023-06-27 23:09:53 +03:00
parent 60a2d5c1f6
commit 484523f82f
3 changed files with 1 additions and 16 deletions

View File

@@ -39,15 +39,6 @@ namespace Platform
{
void CoreInit()
{
static bool initialised = false;
if (!initialised)
{
initialised = true;
#ifdef __ANDROID__
Platform::AndroidInitClassLoader();
#endif // __ANDROID__
}
}
CurrencyType GetCurrencyValue(const char* currCode)