Merge branch 'master' into gfx_unstable

This commit is contained in:
IntelOrca 2014-05-31 16:57:17 +01:00
commit 21ff16e804
1 changed files with 1 additions and 3 deletions

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;