mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-17 03:53:07 +01:00
Revert "Add other-than-selected currency support to format_currency_2dp"
This reverts commit 98d5b332bd9958296218a66e2eb7ef61600c8086.
This commit is contained in:
@@ -476,9 +476,9 @@ void format_currency(char **dest, long long value)
|
||||
}
|
||||
}
|
||||
|
||||
void format_any_currency_2dp(char **dest, long long value, int currencyIndex)
|
||||
void format_currency_2dp(char **dest, long long value)
|
||||
{
|
||||
const currency_descriptor *currencyDesc = &CurrencyDescriptors[currencyIndex];
|
||||
const currency_descriptor *currencyDesc = &CurrencyDescriptors[gConfigGeneral.currency_format];
|
||||
|
||||
int rate = currencyDesc->rate;
|
||||
value *= rate;
|
||||
@@ -517,11 +517,6 @@ void format_any_currency_2dp(char **dest, long long value, int currencyIndex)
|
||||
}
|
||||
}
|
||||
|
||||
void format_currency_2dp(char **dest, long long value)
|
||||
{
|
||||
format_any_currency_2dp(dest, value, gConfigGeneral.currency_format);
|
||||
}
|
||||
|
||||
void format_date(char **dest, uint16 value)
|
||||
{
|
||||
uint16 args[] = { date_get_month(value), date_get_year(value) + 1 };
|
||||
|
||||
Reference in New Issue
Block a user