Skip to content

Commit

Permalink
work on a fix for a color bug that i made as a mistake
Browse files Browse the repository at this point in the history
Signed-off-by: Simo <[email protected]>
  • Loading branch information
Simo3ds authored Mar 14, 2024
1 parent de823db commit 678031c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions arm9/source/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -1125,7 +1125,7 @@ void configMenu(bool oldPinStatus, u32 oldPinMode)

multiOptions[i].posY = endPos + SPACING_Y;
endPos = drawString(true, 10, multiOptions[i].posY, COLOR_WHITE, multiOptionsText[i]);
drawCharacter(true, 10 + multiOptions[i].posXs[multiOptions[i].enabled] * SPACING_X, multiOptions[i].posY, COLOR_YELLOW, selected);
drawCharacter(true, 10 + multiOptions[i].posXs[multiOptions[i].enabled] * SPACING_X, multiOptions[i].posY, COLOR_WHITE, selected);
}

endPos += SPACING_Y / 2;
Expand All @@ -1143,11 +1143,11 @@ void configMenu(bool oldPinStatus, u32 oldPinMode)
{
singleSelected = i;
selectedOption = i + multiOptionsAmount;
color = COLOR_YELLOW;
color = COLOR_WHITE;
}
}

drawString(false, 10, 10, COLOR_YELLOW, optionsDescription[selectedOption]);
drawString(false, 10, 10, COLOR_WHITE, optionsDescription[selectedOption]);

bool startPressed = false;
//Boring configuration menu
Expand Down

0 comments on commit 678031c

Please sign in to comment.