Colorize menu icon graphics, document sMenuInfoIcons

This commit is contained in:
GriffinR
2023-06-01 14:33:32 -04:00
parent f52d3b6ce4
commit 86c21b8e79
11 changed files with 67 additions and 60 deletions
+5 -5
View File
@@ -1529,10 +1529,10 @@ static void PrintTitle(void)
static void DrawMoveInfoLabels(void)
{
BlitMoveInfoIcon(WIN_MOVE_INFO_LABELS, 19, 0, 0);
BlitMoveInfoIcon(WIN_MOVE_INFO_LABELS, 20, 0, 12);
BlitMoveInfoIcon(WIN_MOVE_INFO_LABELS, 21, 0, 24);
BlitMoveInfoIcon(WIN_MOVE_INFO_LABELS, 22, 0, 36);
BlitMenuInfoIcon(WIN_MOVE_INFO_LABELS, MENU_INFO_ICON_TYPE, 0, 0);
BlitMenuInfoIcon(WIN_MOVE_INFO_LABELS, MENU_INFO_ICON_POWER, 0, 12);
BlitMenuInfoIcon(WIN_MOVE_INFO_LABELS, MENU_INFO_ICON_ACCURACY, 0, 24);
BlitMenuInfoIcon(WIN_MOVE_INFO_LABELS, MENU_INFO_ICON_PP, 0, 36);
CopyWindowToVram(WIN_MOVE_INFO_LABELS, COPYWIN_GFX);
}
@@ -1553,7 +1553,7 @@ static void PrintMoveInfo(u16 itemId)
{
// Draw type icon
move = ItemIdToBattleMoveId(itemId);
BlitMoveInfoIcon(WIN_MOVE_INFO, gBattleMoves[move].type + 1, 0, 0);
BlitMenuInfoIcon(WIN_MOVE_INFO, gBattleMoves[move].type + 1, 0, 0);
// Print power
if (gBattleMoves[move].power < 2)