1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-25 15:35:23 +00:00

fix a compiler error under window

This commit is contained in:
gugus 2011-05-23 14:56:19 +02:00
parent 64d6ee26bd
commit b05f780675

View File

@ -24,8 +24,8 @@ namespace Files
for (std::size_t i=0; i<min; ++i)
{
char l = std::tolower (left[i]);
char r = std::tolower (right[i]);
char l = std::tolower (left[i],std::locale());
char r = std::tolower (right[i],std::locale());
if (l<r)
return true;