From d9d8356d50fde6e298d87c48db3f9cfda75e0568 Mon Sep 17 00:00:00 2001 From: Ian Date: Sun, 2 Apr 2023 11:56:49 -0400 Subject: [PATCH] NX: Allow svc_achievement protocol byte to actually exist ..why was this blocked out.. --- source/cl_parse.c | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/source/cl_parse.c b/source/cl_parse.c index 0b47135..9825d1a 100644 --- a/source/cl_parse.c +++ b/source/cl_parse.c @@ -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;