1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-21 22:13:07 +01:00

Replace our own integer types with standard ones

This commit is contained in:
Michael Steenbeek
2018-06-20 17:28:51 +02:00
parent ec3a1e575e
commit 1b08fb4e69
618 changed files with 33440 additions and 33449 deletions

View File

@@ -25,15 +25,15 @@ bool platform_get_font_path(TTFFontDescriptor *font, utf8 *buffer, size_t size)
}
#endif
uint16 platform_get_locale_language() {
uint16_t platform_get_locale_language() {
return LANGUAGE_ENGLISH_UK;
}
uint8 platform_get_locale_currency() {
uint8_t platform_get_locale_currency() {
return platform_get_currency_value(NULL);
}
uint8 platform_get_locale_measurement_format() {
uint8_t platform_get_locale_measurement_format() {
return MEASUREMENT_FORMAT_METRIC;
}