mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 14:51:46 +00:00
- Fixed: The menu treated netdemos as actual netgames.
SVN r4052 (trunk)
This commit is contained in:
parent
5b97bf47de
commit
c4a4b9821d
1 changed files with 1 additions and 1 deletions
|
@ -409,7 +409,7 @@ void M_SetMenu(FName menu, int param)
|
|||
FMenuDescriptor **desc = MenuDescriptors.CheckKey(menu);
|
||||
if (desc != NULL)
|
||||
{
|
||||
if ((*desc)->mNetgameMessage.IsNotEmpty() && netgame)
|
||||
if ((*desc)->mNetgameMessage.IsNotEmpty() && netgame && !demoplayback)
|
||||
{
|
||||
M_StartMessage((*desc)->mNetgameMessage, 1);
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue