From 7fc5dc815052d3babfe5d906b5f7a694c8c23c12 Mon Sep 17 00:00:00 2001 From: toaster Date: Wed, 17 Sep 2025 00:22:57 +0100 Subject: [PATCH] Rivals greater than skin ID 256 can now properly be added in GP --- src/k_grandprix.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/k_grandprix.cpp b/src/k_grandprix.cpp index 85b7412ac..1732d0bd1 100644 --- a/src/k_grandprix.cpp +++ b/src/k_grandprix.cpp @@ -316,7 +316,7 @@ void K_InitGrandPrixBots(void) // Intentionally referenced before (currently dummied out) unlock check. Such a tease! if (rivalnum != -1 && grabskins[(UINT16)rivalnum] != MAXSKINS) { - botskinlist[botskinlistpos++] = (UINT8)rivalnum; + botskinlist[botskinlistpos++] = (UINT16)rivalnum; grabskins[(UINT16)rivalnum] = MAXSKINS; } }