mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 07:12:16 +00:00
- Do nothing in D_DoAdvanceDemo if gameaction is not ga_nothing.
SVN r3326 (trunk)
This commit is contained in:
parent
43fed9dc89
commit
5284ab9688
1 changed files with 7 additions and 2 deletions
|
@ -1225,12 +1225,17 @@ void D_DoAdvanceDemo (void)
|
||||||
static int pagecount;
|
static int pagecount;
|
||||||
const char *pagename = NULL;
|
const char *pagename = NULL;
|
||||||
|
|
||||||
|
advancedemo = false;
|
||||||
|
|
||||||
|
if (gameaction != ga_nothing)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
V_SetBlend (0,0,0,0);
|
V_SetBlend (0,0,0,0);
|
||||||
players[consoleplayer].playerstate = PST_LIVE; // not reborn
|
players[consoleplayer].playerstate = PST_LIVE; // not reborn
|
||||||
advancedemo = false;
|
|
||||||
usergame = false; // no save / end game here
|
usergame = false; // no save / end game here
|
||||||
paused = 0;
|
paused = 0;
|
||||||
gameaction = ga_nothing;
|
|
||||||
|
|
||||||
// [RH] If you want something more dynamic for your title, create a map
|
// [RH] If you want something more dynamic for your title, create a map
|
||||||
// and name it TITLEMAP. That map will be loaded and used as the title.
|
// and name it TITLEMAP. That map will be loaded and used as the title.
|
||||||
|
|
Loading…
Reference in a new issue