Fix battle offsets applying to custom offsets on ring meter
This commit is contained in:
parent
02fa20bc11
commit
e450f21ddf
1 changed files with 7 additions and 4 deletions
11
src/k_hud.c
11
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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue