diff --git a/neo/framework/Common_load.cpp b/neo/framework/Common_load.cpp index 2f1b849d0..8a790e092 100644 --- a/neo/framework/Common_load.cpp +++ b/neo/framework/Common_load.cpp @@ -1013,6 +1013,7 @@ bool idCommonLocal::SaveGame( const char* saveName ) gameDetails.descriptors.Set( SAVEGAME_DETAIL_FIELD_LANGUAGE, sys_lang.GetString() ); gameDetails.descriptors.SetInt( SAVEGAME_DETAIL_FIELD_CHECKSUM, ( int )gameDetails.descriptors.Checksum() ); + gameDetails.isRBDoom = false; // Carl gameDetails.slotName = saveName; ScrubSaveGameFileName( gameDetails.slotName ); diff --git a/neo/sys/sys_savegame.cpp b/neo/sys/sys_savegame.cpp index 665198f6f..acb45fef9 100644 --- a/neo/sys/sys_savegame.cpp +++ b/neo/sys/sys_savegame.cpp @@ -247,6 +247,7 @@ void idSaveGameDetails::Clear() { descriptors.Clear(); damaged = false; + isRBDoom = false; // Carl date = 0; slotName[0] = '\0'; }