Fixed Acc value shadow cut off when Accuracy = 100 (#8886)

This commit is contained in:
Montblanc 2026-01-11 21:49:40 -08:00 committed by GitHub
parent b213d430e0
commit 3d630d4888
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1739,7 +1739,7 @@ static void MoveSelectionDisplayMoveDescription(u32 battler)
u8 acc_desc[7] = _("ACC: ");
u8 cat_start[] = _("{CLEAR_TO 0x03}");
u8 pwr_start[] = _("{CLEAR_TO 0x38}");
u8 acc_start[] = _("{CLEAR_TO 0x6D}");
u8 acc_start[] = _("{CLEAR_TO 0x6C}");
LoadMessageBoxAndBorderGfx();
DrawStdWindowFrame(B_WIN_MOVE_DESCRIPTION, FALSE);
if (pwr < 2)