mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-16 11:33:03 +01:00
Merge branch 'master' into gfx_unstable
This commit is contained in:
@@ -1285,9 +1285,7 @@ void format_currency_2dp(char **dest, int value)
|
||||
*dest = dst;
|
||||
|
||||
// Two decimal places
|
||||
digit = value % 10;
|
||||
value /= 10;
|
||||
*dst++ = '0' + digit;
|
||||
*dst++ = '0';
|
||||
digit = value % 10;
|
||||
value /= 10;
|
||||
*dst++ = '0' + digit;
|
||||
|
||||
Reference in New Issue
Block a user