- Fixed: Autoloading a game (e.g. respawning after dying in single player)

during demo playback prematurely ended demo control of the player.


SVN r1321 (trunk)
This commit is contained in:
Randy Heit 2008-12-16 04:56:25 +00:00
parent 86c04f6b82
commit 45fc728f2e
3 changed files with 10 additions and 2 deletions

View File

@ -1,4 +1,7 @@
December 15, 2008
- Fixed: Autoloading a game (e.g. respawning after dying in single player)
during demo playback prematurely ended demo control of the player.
- Fixed: Loading a multiplayer save with only one player crashed.
- Changed the co-op intermission screen to draw the stats with the small font.
- Added Karate Chris's patch to optionally specify an angle offset for
summoning.

View File

@ -61,6 +61,7 @@ typedef enum
ga_newgame,
ga_newgame2,
ga_loadgame,
ga_autoloadgame,
ga_savegame,
ga_autosave,
ga_playdemo,

View File

@ -900,6 +900,7 @@ void G_Ticker ()
G_DoNewGame ();
break;
case ga_loadgame:
case ga_autoloadgame:
G_DoLoadGame ();
break;
case ga_savegame:
@ -1424,7 +1425,7 @@ void G_DoReborn (int playernum, bool freshbot)
if (BackupSaveName.Len() > 0 && FileExists (BackupSaveName.GetChars()))
{ // Load game from the last point it was saved
savename = BackupSaveName;
gameaction = ga_loadgame;
gameaction = ga_autoloadgame;
}
else
{ // Reload the level from scratch
@ -1698,8 +1699,11 @@ void G_DoLoadGame ()
char *text = NULL;
char *map;
gameaction = ga_nothing;
if (gameaction != ga_autoloadgame)
{
demoplayback = false;
}
gameaction = ga_nothing;
FILE *stdfile = fopen (savename.GetChars(), "rb");
if (stdfile == NULL)