1 parent c331713 commit aee079cCopy full SHA for aee079c
1 file changed
src/Interface/Text.cpp
@@ -56,7 +56,7 @@ std::wstring Text::formatFunding(int funds)
56
setlocale (LC_MONETARY,""); // see http://www.cplusplus.com/reference/clocale/localeconv/
57
struct lconv * lc;
58
lc=localeconv();
59
- std::wstring thousands_sep = Language::cpToWstr(ispunct((unsigned char)*(lc->mon_thousands_sep)) ? lc->mon_decimal_point : " ");
+ std::wstring thousands_sep = Language::cpToWstr(ispunct((unsigned char)*(lc->mon_thousands_sep)) ? lc->mon_thousands_sep : " ");
60
61
bool negative = false;
62
if (funds < 0)
0 commit comments