mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2025-01-10 23:14:08 +00:00
Fix language initialization call order
This commit is contained in:
parent
91902a031e
commit
0f5893ed60
|
@ -1231,15 +1231,15 @@ void InitialiseLanguage()
|
|||
}
|
||||
}
|
||||
|
||||
TheText.Unload();
|
||||
TheText.Load();
|
||||
|
||||
#ifndef _WIN32
|
||||
// TODO this is needed for strcasecmp to work correctly across all languages, but can these cause other problems??
|
||||
setlocale(LC_CTYPE, "C");
|
||||
setlocale(LC_COLLATE, "C");
|
||||
setlocale(LC_NUMERIC, "C");
|
||||
#endif
|
||||
|
||||
TheText.Unload();
|
||||
TheText.Load();
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue