1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-22 06:23:04 +01:00

Closes #12415: Refactor CURRENCY_TYPE to strong enum (#13276)

* closes #12415 CURRENCY_TYPE enum refactor

* reverses unintended change in Linux.cpp

* closes #12415 CurrencyType strong enum
This commit is contained in:
Bryan DiLaura
2020-10-24 22:33:06 -06:00
committed by GitHub
parent 7053413da5
commit 894be65b6d
14 changed files with 95 additions and 93 deletions

View File

@@ -31,7 +31,7 @@ uint16_t platform_get_locale_language()
return LANGUAGE_ENGLISH_UK;
}
uint8_t platform_get_locale_currency()
CurrencyType platform_get_locale_currency()
{
return platform_get_currency_value(NULL);
}