Add bubbleshield boost timer and rename wheel graphics

This commit is contained in:
NepDisk 2026-05-03 15:55:31 -04:00
parent 856684a68c
commit 5d2b5552c5
3 changed files with 10 additions and 3 deletions

View file

@ -103,7 +103,7 @@
#define ASSET_HASH_TEXTURES_KART 0xb4211b2f32b6a291
#define ASSET_HASH_CHARS_KART 0x1e68a3e01aa5c68b
#define ASSET_HASH_MAPS_KART 0x38558ed00da41ce9
#define ASSET_HASH_MAIN_PK3 0x0c4cc20f7f115219
#define ASSET_HASH_MAIN_PK3 0xbeaab17108f0815a
#define ASSET_HASH_MAPPATCH_PK3 0xc76b132f7e7b3819
#define ASSET_HASH_BONUSCHARS_KART 0x60e6f13d822a7461
#ifdef USE_PATCH_FILE

View file

@ -2,6 +2,7 @@
//-----------------------------------------------------------------------------
// Copyright (C) 2025 by haya3218.
// Copyright (C) 2018-2024 by Kart Krew
// Copyright (C) 2026 by Team Blankart.
//
// This program is free software distributed under the
// terms of the GNU General Public License, version 2.
@ -295,6 +296,12 @@ void K_DisplayItemTimers(void)
{qche("K_TIRING")},
1,
},
{ // bubbleshield
"bubbleshield",
stplyr->bubbleboost,
{qche("K_TIBUBS")},
1,
},
{ // flameshield
"flameshield",
stplyr->flametimer,

View file

@ -675,7 +675,7 @@ void K_LoadKartHUDGraphics(void)
HU_UpdatePatch(&joyshadow, "JOYSHD");
// Input UI Wheel
HU_UpdatePatch(&kp_inputwheel, "K_WHEEL0");
HU_UpdatePatch(&kp_inputwheel, "B_WHEEL0");
kp_inputwheel->pivot.x =
(kp_inputwheel->width / 2) + kp_inputwheel->leftoffset;
kp_inputwheel->pivot.y =
@ -683,7 +683,7 @@ void K_LoadKartHUDGraphics(void)
kp_inputwheel->alignflags |=
(PATCHALIGN_AUTOCENTER | PATCHALIGN_USEPIVOTS);
HU_UpdatePatch(&kp_inputwheel_shadow, "K_WHEEL1");
HU_UpdatePatch(&kp_inputwheel_shadow, "B_WHEEL1");
kp_inputwheel_shadow->pivot.x =
(kp_inputwheel_shadow->width / 2) + kp_inputwheel_shadow->leftoffset;
kp_inputwheel_shadow->pivot.y =