summaryrefslogtreecommitdiff
path: root/src/currency.cpp
diff options
context:
space:
mode:
authorTegas Aziz <49786146+WilloIzCitron@users.noreply.github.com>2021-02-19 16:27:41 +0700
committerGitHub <noreply@github.com>2021-02-19 10:27:41 +0100
commit1f6fb8c2908ccd5de730a973d1276554a7abf4b6 (patch)
tree4cb7cec5caf05189048c817335760dbd2bf5371d /src/currency.cpp
parent96990b2ea7e08f73d7b53207533dc3f94394ac89 (diff)
downloadopenttd-1f6fb8c2908ccd5de730a973d1276554a7abf4b6.tar.xz
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.
Diffstat (limited to 'src/currency.cpp')
-rw-r--r--src/currency.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/currency.cpp b/src/currency.cpp
index 5c758c48d..46c478d0d 100644
--- a/src/currency.cpp
+++ b/src/currency.cpp
@@ -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 */