mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2025-02-21 11:01:36 +00:00
- fixed: The language ID was set before reading the config.
This essentially rendered saving the language CVAR useless.
This commit is contained in:
parent
31820098a6
commit
0eef6f031f
1 changed files with 1 additions and 2 deletions
|
@ -2070,8 +2070,6 @@ static void D_DoomInit()
|
|||
|
||||
gamestate = GS_STARTUP;
|
||||
|
||||
SetLanguageIDs ();
|
||||
|
||||
const char *v = Args->CheckValue("-rngseed");
|
||||
if (v)
|
||||
{
|
||||
|
@ -2090,6 +2088,7 @@ static void D_DoomInit()
|
|||
|
||||
if (!batchrun) Printf ("M_LoadDefaults: Load system defaults.\n");
|
||||
M_LoadDefaults (); // load before initing other systems
|
||||
SetLanguageIDs ();
|
||||
}
|
||||
|
||||
//==========================================================================
|
||||
|
|
Loading…
Reference in a new issue