Fixed speed to be more like vanilla's
This commit is contained in:
parent
7ca07527fa
commit
abe9910251
1 changed files with 1 additions and 1 deletions
|
@ -2439,7 +2439,7 @@ s32 MoveBattleBar(u8 battlerId, u8 healthboxSpriteId, u8 whichBar, u8 unused)
|
|||
gBattleSpritesDataPtr->battleBars[battlerId].receivedValue,
|
||||
&gBattleSpritesDataPtr->battleBars[battlerId].currValue,
|
||||
#if B_FAST_HP_DRAIN == TRUE
|
||||
B_HEALTHBAR_PIXELS / 8, max(gBattleSpritesDataPtr->battleBars[battlerId].maxValue / 64, 1));
|
||||
B_HEALTHBAR_PIXELS / 8, max(gBattleSpritesDataPtr->battleBars[battlerId].maxValue / B_HEALTHBAR_PIXELS, 1));
|
||||
#else
|
||||
B_HEALTHBAR_PIXELS / 8, 1);
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue