Skip to content

Commit aee079c

Browse files
committed
thanks, autocomplete! you're a pal.
1 parent c331713 commit aee079c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Interface/Text.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ std::wstring Text::formatFunding(int funds)
5656
setlocale (LC_MONETARY,""); // see http://www.cplusplus.com/reference/clocale/localeconv/
5757
struct lconv * lc;
5858
lc=localeconv();
59-
std::wstring thousands_sep = Language::cpToWstr(ispunct((unsigned char)*(lc->mon_thousands_sep)) ? lc->mon_decimal_point : " ");
59+
std::wstring thousands_sep = Language::cpToWstr(ispunct((unsigned char)*(lc->mon_thousands_sep)) ? lc->mon_thousands_sep : " ");
6060

6161
bool negative = false;
6262
if (funds < 0)

0 commit comments

Comments
 (0)