mirror of
https://github.com/nzp-team/quakespasm.git
synced 2024-11-25 05:11:07 +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:
|
||||
CL_ParseLimbUpdate();
|
||||
break;
|
||||
#ifdef VITA
|
||||
case svc_achievement:
|
||||
|
||||
#ifdef VITA
|
||||
|
||||
HUD_Parse_Achievement (MSG_ReadByte());
|
||||
|
||||
#else
|
||||
|
||||
MSG_ReadByte(); // motolegacy -- stop breaking protocol
|
||||
|
||||
#endif // VITA
|
||||
|
||||
break;
|
||||
#endif
|
||||
case svc_maxammo:
|
||||
domaxammo = true;
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue