mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-22 04:01:31 +00:00
- fixed crash after change level failure
https://forum.zdoom.org/viewtopic.php?t=72890
This commit is contained in:
parent
a067466dd8
commit
dcfd72c766
1 changed files with 1 additions and 1 deletions
|
@ -1014,7 +1014,7 @@ bool G_Responder (event_t *ev)
|
|||
{
|
||||
if (ST_Responder (ev))
|
||||
return true; // status window ate it
|
||||
if (!viewactive && primaryLevel->automap->Responder (ev, false))
|
||||
if (!viewactive && primaryLevel->automap && primaryLevel->automap->Responder (ev, false))
|
||||
return true; // automap ate it
|
||||
}
|
||||
else if (gamestate == GS_FINALE)
|
||||
|
|
Loading…
Reference in a new issue