From e450f21ddf8064e75c8ad7a0968bef0d185d36ce Mon Sep 17 00:00:00 2001 From: NepDisk Date: Thu, 26 Jun 2025 14:25:21 -0400 Subject: [PATCH] Fix battle offsets applying to custom offsets on ring meter --- src/k_hud.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/k_hud.c b/src/k_hud.c index 13e51fde8..ec8ea6375 100644 --- a/src/k_hud.c +++ b/src/k_hud.c @@ -2461,11 +2461,14 @@ static void K_drawRingMeter(void) UINT8 *colormap = NULL; SINT8 coloroffset = 0; - if (gametype == GT_BATTLE) - ringoffsety -= 4; + if (cv_speed_xoffset.value == 0 && cv_speed_yoffset.value == 0) + { + if (gametype == GT_BATTLE) + ringoffsety -= 4; - if (itembreaker) - ringoffsety -= 2; + if (itembreaker) + ringoffsety -= 2; + } if (K_UseColorHud()) coloroffset = 2;