1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-23 14:54:30 +01:00

Upgrade platform_get_locale_language()

This commit is contained in:
Gymnasiast
2022-01-08 12:19:24 +01:00
parent 77d607a4c0
commit 12034b2d36
11 changed files with 205 additions and 216 deletions

View File

@@ -10,6 +10,7 @@
#ifdef __ANDROID__
# include "../core/Guard.hpp"
# include "../localisation/Language.h"
# include "Platform2.h"
namespace Platform
@@ -54,6 +55,11 @@ namespace Platform
{
return false;
}
uint16_t GetLocaleLanguage()
{
return LANGUAGE_ENGLISH_UK;
}
} // namespace Platform
#endif