Fix -nodata triggering gamedata save

This commit is contained in:
Eidolon 2024-02-26 23:17:17 -06:00
parent cad558343d
commit 9f00befccf

View file

@ -320,7 +320,7 @@ void srb2::load_ng_gamedata()
// The following used to be in M_ClearSecrets, but that was silly. // The following used to be in M_ClearSecrets, but that was silly.
M_UpdateUnlockablesAndExtraEmblems(false, true); M_UpdateUnlockablesAndExtraEmblems(false, true);
M_FinaliseGameData(); M_FinaliseGameData();
gamedata->loaded = true; gamedata->loaded = false;
return; return;
} }