mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-03-29 22:20:33 +00:00
fix for windows builds
This commit is contained in:
parent
2c2106205d
commit
4e7ee97050
@ -259,7 +259,11 @@ namespace MWGui
|
||||
timeinfo = localtime(&time);
|
||||
|
||||
// Use system/environment locale settings for datetime formatting
|
||||
#if defined(_WIN32) || defined(__WINDOWS__)
|
||||
setlocale(LC_TIME, "");
|
||||
#else
|
||||
std::setlocale(LC_TIME, "");
|
||||
#endif
|
||||
|
||||
const int size=1024;
|
||||
char buffer[size];
|
||||
|
Loading…
x
Reference in New Issue
Block a user