From 645a6df76596311e3f9e7a5defa5c906fc9f1e1f Mon Sep 17 00:00:00 2001 From: VelocitOni Date: Thu, 19 Oct 2023 12:24:08 -0400 Subject: [PATCH] Adjusted cup icon offsets Made the Chaotix Monitor & Sonic Advance capsule cup icons have proper icon offsets. --- src/k_menudraw.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/k_menudraw.c b/src/k_menudraw.c index a7c9117c7..c327f0dc0 100644 --- a/src/k_menudraw.c +++ b/src/k_menudraw.c @@ -2660,12 +2660,20 @@ void M_DrawCupSelect(void) if (monitor == '2') { - icony = 5; + icony = 5; // by default already 7px down, so this is really 2px further up } + else if (monitor == '3') + { + icony = 6; + } } else { monitor = 'A' + (templevelsearch.cup->monitor - 10); + if (monitor == 'X') + { + icony = 11; + } } }