mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-02-15 08:31:03 +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)
|
switch (cmd)
|
||||||
{
|
{
|
||||||
default:
|
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;
|
break;
|
||||||
|
|
||||||
case svc_nop:
|
case svc_nop:
|
||||||
|
|
Loading…
Reference in a new issue