Add: Indonesia Rupiah as in-game currency (#8616)

The exchange rate is actually more like 19,000, but OpenTTD
doesn't handle such high exchange rates kindly.
This commit is contained in:
Tegas Aziz
2021-02-19 16:27:41 +07:00
committed by GitHub
parent 96990b2ea7
commit 1f6fb8c290
3 changed files with 3 additions and 0 deletions

View File

@@ -66,6 +66,7 @@ static const CurrencySpec origin_currency_specs[CURRENCY_END] = {
{ 8, "", CF_NOEURO, u8"\u00a5", "", 0, STR_GAME_OPTIONS_CURRENCY_CNY }, ///< chinese renminbi
{ 10, "", CF_NOEURO, "HKD" NBSP, "", 0, STR_GAME_OPTIONS_CURRENCY_HKD }, ///< hong kong dollar
{ 90, "", CF_NOEURO, u8"\u20b9", "", 0, STR_GAME_OPTIONS_CURRENCY_INR }, ///< Indian Rupee
{ 19, "", CF_NOEURO, "Rp", "", 0, STR_GAME_OPTIONS_CURRENCY_IDR }, ///< Indonesian Rupiah
};
/** Array of currencies used by the system */