diff --git a/Source/Core/Common/Src/StringUtil.h b/Source/Core/Common/Src/StringUtil.h index a48d462b1d..808be553d7 100644 --- a/Source/Core/Common/Src/StringUtil.h +++ b/Source/Core/Common/Src/StringUtil.h @@ -52,7 +52,11 @@ template std::string ThousandSeparate(I value, int spaces = 0) { std::ostringstream oss; +#ifdef __APPLE__ oss.imbue(std::locale()); +#else + oss.imbue(std::locale("")); +#endif oss << std::setw(spaces) << value; return oss.str();