diff --git a/st_main.c b/st_main.c index b386a9f26..2ee5927e8 100644 --- a/st_main.c +++ b/st_main.c @@ -610,13 +610,13 @@ static void ST_Drawer_ (stbar_t* sb) break; case stc_drawhealth: // CALICO: Fixed EraseBlock call to have proper width - ST_EraseBlock(HEALTHX - 14 * 3 - 2, HEALTHY, 14 * 3 + 4, BIGSHORT(sbobj[0]->height)); + ST_EraseBlock(HEALTHX - 14 * 3 - 4, HEALTHY, 14 * 3 + 4, BIGSHORT(sbobj[0]->height)); DrawJagobj(sbobj[sb_percent], HEALTHX, stbar_y + HEALTHY); ST_DrawValue(HEALTHX, HEALTHY, cmd->value); break; case stc_drawarmor: // CALICO: Fixed EraseBlock call to have proper width - ST_EraseBlock(ARMORX - 14 * 3 - 2, ARMORY, 14 * 3 + 4, BIGSHORT(sbobj[0]->height)); + ST_EraseBlock(ARMORX - 14 * 3 - 4, ARMORY, 14 * 3 + 4, BIGSHORT(sbobj[0]->height)); DrawJagobj(sbobj[sb_percent], ARMORX, stbar_y + ARMORY); ST_DrawValue(ARMORX, ARMORY, cmd->value); break; diff --git a/st_main.h b/st_main.h index ac5834d87..93d19a7c5 100644 --- a/st_main.h +++ b/st_main.h @@ -9,7 +9,7 @@ #define AMMOX 52 #define AMMOY 14 -#define HEALTHX 102 +#define HEALTHX 104 #define HEALTHY AMMOY #define KEYX 260 @@ -24,7 +24,7 @@ #define FACEW 32 #define FACEH 32 -#define ARMORX 238 +#define ARMORX 240 #define ARMORY HEALTHY #define STATSX 308