mirror of
https://github.com/id-Software/DOOM-3-BFG.git
synced 2025-03-14 06:34:10 +00:00
Fix loading saved game prior to commit 7e21048
crash.
Commit7e21048
introduced a change in the save game files strutcure. This makes the game crash whenever you load saved games created with a prior version of the code. This commit tends to fix this issue. However, save game files created between commit7e21048
and the current one will not load correclty. Unless the user change the saved game's saveVersion number in game.details.
This commit is contained in:
parent
9e32b00c87
commit
2288ab82bb
2 changed files with 15 additions and 6 deletions
|
@ -1454,11 +1454,19 @@ bool idGameLocal::InitFromSaveGame( const char* mapName, idRenderWorld* renderWo
|
|||
|
||||
// FIXME: save smoke particles
|
||||
|
||||
savegame.ReadInt( cinematicSkipTime );
|
||||
savegame.ReadInt( cinematicStopTime );
|
||||
savegame.ReadInt( cinematicMaxSkipTime );
|
||||
if( saveGameVersion > BUILD_NUMBER_SAVE_VERSION_BEFORE_SKIP_CINEMATIC )
|
||||
{
|
||||
savegame.ReadInt( cinematicSkipTime );
|
||||
savegame.ReadInt( cinematicStopTime );
|
||||
savegame.ReadInt( cinematicMaxSkipTime );
|
||||
}
|
||||
|
||||
savegame.ReadBool( inCinematic );
|
||||
savegame.ReadBool( skipCinematic );
|
||||
|
||||
if( saveGameVersion > BUILD_NUMBER_SAVE_VERSION_BEFORE_SKIP_CINEMATIC )
|
||||
{
|
||||
savegame.ReadBool( skipCinematic );
|
||||
}
|
||||
|
||||
savegame.ReadInt( ( int& )gameType );
|
||||
|
||||
|
|
|
@ -26,7 +26,8 @@ If you have questions concerning this license or the applicable additional terms
|
|||
===========================================================================
|
||||
*/
|
||||
|
||||
const int BUILD_NUMBER_SAVE_VERSION_CHANGE = 1400; // Altering saves so that the version goes in the Details file that we read in during the enumeration phase
|
||||
const int BUILD_NUMBER_SAVE_VERSION_BEFORE_SKIP_CINEMATIC = 1400;
|
||||
const int BUILD_NUMBER_SAVE_VERSION_CHANGE = 1401; // Altering saves so that the version goes in the Details file that we read in during the enumeration phase
|
||||
|
||||
const int BUILD_NUMBER = BUILD_NUMBER_SAVE_VERSION_CHANGE;
|
||||
const int BUILD_NUMBER_MINOR = 0;
|
||||
const int BUILD_NUMBER_MINOR = 0;
|
||||
|
|
Loading…
Reference in a new issue