summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPikalaxALT <PikalaxALT@gmail.com>2020-03-30 18:14:11 -0400
committerPikalaxALT <PikalaxALT@gmail.com>2020-03-30 18:14:11 -0400
commit24ae03ff3012401e4fd14f371c33e748dd096afe (patch)
tree172363a464e590037d1570b7187dee4491625104 /src
parentbfd4165ca03d343dcb290aa30263b8a8425751dd (diff)
Fix accidental space
Diffstat (limited to 'src')
-rw-r--r--src/option_menu.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/option_menu.c b/src/option_menu.c
index 81f35fffa..54cca0501 100644
--- a/src/option_menu.c
+++ b/src/option_menu.c
@@ -571,10 +571,10 @@ static void LoadOptionMenuItemNames(void)
static void UpdateSettingSelectionDisplay(u16 selection)
{
- u16 maxLetterHeight, y;
+ u16 maxLetterHeight, y;
- maxLetterHeight = GetFontAttribute(2, FONTATTR_MAX_LETTER_HEIGHT);
- y = selection * ( maxLetterHeight - 1) + 0x3A;
- SetGpuReg(REG_OFFSET_WIN0V, WIN_RANGE(y, y + maxLetterHeight));
+ maxLetterHeight = GetFontAttribute(2, FONTATTR_MAX_LETTER_HEIGHT);
+ y = selection * (maxLetterHeight - 1) + 0x3A;
+ SetGpuReg(REG_OFFSET_WIN0V, WIN_RANGE(y, y + maxLetterHeight));
SetGpuReg(REG_OFFSET_WIN0H, WIN_RANGE(0x10, 0xE0));
}