1
0
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:
IntelOrca
2014-05-31 16:57:17 +01:00

View File

@@ -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;