forked from mirror/openmw-tes3mp
fix a compiler error under window
This commit is contained in:
parent
64d6ee26bd
commit
b05f780675
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue