mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 06:39:01 +00:00
Fix language initialization call order
This commit is contained in:
parent
f5330990b1
commit
0448ae662f
1 changed files with 3 additions and 3 deletions
|
@ -1202,15 +1202,15 @@ void InitialiseLanguage()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
TheText.Unload();
|
|
||||||
TheText.Load();
|
|
||||||
|
|
||||||
#ifndef _WIN32
|
#ifndef _WIN32
|
||||||
// TODO this is needed for strcasecmp to work correctly across all languages, but can these cause other problems??
|
// TODO this is needed for strcasecmp to work correctly across all languages, but can these cause other problems??
|
||||||
setlocale(LC_CTYPE, "C");
|
setlocale(LC_CTYPE, "C");
|
||||||
setlocale(LC_COLLATE, "C");
|
setlocale(LC_COLLATE, "C");
|
||||||
setlocale(LC_NUMERIC, "C");
|
setlocale(LC_NUMERIC, "C");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
TheText.Unload();
|
||||||
|
TheText.Load();
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue