mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 14:51:46 +00:00
- 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:
parent
86c04f6b82
commit
45fc728f2e
3 changed files with 10 additions and 2 deletions
|
@ -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.
|
||||
|
|
|
@ -61,6 +61,7 @@ typedef enum
|
|||
ga_newgame,
|
||||
ga_newgame2,
|
||||
ga_loadgame,
|
||||
ga_autoloadgame,
|
||||
ga_savegame,
|
||||
ga_autosave,
|
||||
ga_playdemo,
|
||||
|
|
|
@ -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;
|
||||
|
||||
if (gameaction != ga_autoloadgame)
|
||||
{
|
||||
demoplayback = false;
|
||||
}
|
||||
gameaction = ga_nothing;
|
||||
demoplayback = false;
|
||||
|
||||
FILE *stdfile = fopen (savename.GetChars(), "rb");
|
||||
if (stdfile == NULL)
|
||||
|
|
Loading…
Reference in a new issue