mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 07:21:58 +00:00
actually, svc_strings[lastcmd] is always legal there...
This commit is contained in:
parent
707507e9a3
commit
22c69dd59c
1 changed files with 1 additions and 1 deletions
|
@ -995,7 +995,7 @@ void CL_ParseServerMessage (void)
|
|||
switch (cmd)
|
||||
{
|
||||
default:
|
||||
Host_Error ("Illegible server message %d (previous was %d)", cmd, lastcmd);
|
||||
Host_Error ("Illegible server message %d (previous was %s)", cmd, svc_strings[lastcmd]); //johnfitz -- added svc_strings[lastcmd]
|
||||
break;
|
||||
|
||||
case svc_nop:
|
||||
|
|
Loading…
Reference in a new issue