mirror of
https://github.com/nzp-team/quakespasm.git
synced 2025-02-18 01:21:32 +00:00
NX: Allow svc_achievement protocol byte to actually exist
..why was this blocked out..
This commit is contained in:
parent
e25ad7eb97
commit
d9d8356d50
1 changed files with 10 additions and 2 deletions
|
@ -1529,11 +1529,19 @@ void CL_ParseServerMessage (void)
|
||||||
case svc_limbupdate:
|
case svc_limbupdate:
|
||||||
CL_ParseLimbUpdate();
|
CL_ParseLimbUpdate();
|
||||||
break;
|
break;
|
||||||
#ifdef VITA
|
|
||||||
case svc_achievement:
|
case svc_achievement:
|
||||||
|
|
||||||
|
#ifdef VITA
|
||||||
|
|
||||||
HUD_Parse_Achievement (MSG_ReadByte());
|
HUD_Parse_Achievement (MSG_ReadByte());
|
||||||
|
|
||||||
|
#else
|
||||||
|
|
||||||
|
MSG_ReadByte(); // motolegacy -- stop breaking protocol
|
||||||
|
|
||||||
|
#endif // VITA
|
||||||
|
|
||||||
break;
|
break;
|
||||||
#endif
|
|
||||||
case svc_maxammo:
|
case svc_maxammo:
|
||||||
domaxammo = true;
|
domaxammo = true;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue