1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-18 12:33:17 +01:00

fix format_string currency

This commit is contained in:
IntelOrca
2014-05-31 17:11:26 +01:00
parent 7ae52df001
commit b701eb8222

View File

@@ -1233,6 +1233,7 @@ void format_currency(char **dest, int value)
*dest = dst;
value /= 10;
if (value == 0) {
*dst++ = '0';
} else {