mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-16 05:13:58 -07:00
Fix broken SP persisted settings
The MP ones were always used instead. Differential Revision: https://code.wildfiregames.com/D4038 This was SVN commit r25618.
This commit is contained in:
parent
3d20791837
commit
b86b4d352e
1 changed files with 1 additions and 1 deletions
|
|
@ -7,7 +7,7 @@ class GameSettingsController
|
|||
{
|
||||
this.setupWindow = setupWindow;
|
||||
this.mapCache = mapCache;
|
||||
this.persistentMatchSettings = new PersistentMatchSettings(this);
|
||||
this.persistentMatchSettings = new PersistentMatchSettings(g_IsNetworked);
|
||||
|
||||
this.guiData = new GameSettingsGuiData();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue