mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 23:01:59 +00:00
- Fixed: ST_Endoom must exit, even if showendoom is set to false.
SVN r442 (trunk)
This commit is contained in:
parent
34c6f64d82
commit
79a4bfbdf0
1 changed files with 1 additions and 1 deletions
|
@ -757,7 +757,7 @@ CVAR(Bool, showendoom, true, CVAR_ARCHIVE|CVAR_GLOBALCONFIG)
|
|||
|
||||
void ST_Endoom()
|
||||
{
|
||||
if (!showendoom) return;
|
||||
if (!showendoom) exit(0);
|
||||
|
||||
int endoom_lump = Wads.CheckNumForName (
|
||||
gameinfo.gametype == GAME_Doom? "ENDOOM" :
|
||||
|
|
Loading…
Reference in a new issue