mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 14:51:51 +00:00
DEM_CHANGEMAP2 wasn't properly skipped
This commit is contained in:
parent
db25322b4c
commit
b2fbeb24c4
1 changed files with 3 additions and 1 deletions
|
@ -2667,7 +2667,9 @@ void Net_SkipCommand (int type, BYTE **stream)
|
|||
case DEM_SUMMONFOE2:
|
||||
skip = strlen ((char *)(*stream)) + 26;
|
||||
break;
|
||||
|
||||
case DEM_CHANGEMAP2:
|
||||
skip = strlen((char *)(*stream + 1)) + 2;
|
||||
break;
|
||||
case DEM_MUSICCHANGE:
|
||||
case DEM_PRINT:
|
||||
case DEM_CENTERPRINT:
|
||||
|
|
Loading…
Reference in a new issue