diff options
author | DizzyEggg <jajkodizzy@wp.pl> | 2018-01-16 19:41:25 +0100 |
---|---|---|
committer | DizzyEggg <jajkodizzy@wp.pl> | 2018-01-16 19:41:25 +0100 |
commit | 77352c7ee480fe3127692ce50a6bdd019de87291 (patch) | |
tree | 73ed78310669d9829ea5abd70ae7959c727f0c53 /src | |
parent | 4dd06dbcd327e2af38912e09d31d5c3e00bc93ba (diff) |
give the s prefix to a variable
Diffstat (limited to 'src')
-rw-r--r-- | src/option_menu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/option_menu.c b/src/option_menu.c index 07d22eeb0..b76d9e0e6 100644 --- a/src/option_menu.c +++ b/src/option_menu.c @@ -78,7 +78,7 @@ static const u16 sUnknown_0855C604[] = INCBIN_U16("graphics/misc/option_menu_tex // note: this is only used in the Japanese release static const u8 sEqualSignGfx[] = INCBIN_U8("graphics/misc/option_menu_equals_sign.4bpp"); -static const u8 *const OptionMenuItemsNames[MENUITEM_COUNT] = +static const u8 *const sOptionMenuItemsNames[MENUITEM_COUNT] = { gText_TextSpeed, gText_BattleScene, @@ -636,7 +636,7 @@ static void DrawOptionMenuTexts(void) FillWindowPixelBuffer(WIN_OPTIONS, 0x11); for (i = 0; i < MENUITEM_COUNT; i++) { - PrintTextOnWindow(WIN_OPTIONS, 1, OptionMenuItemsNames[i], 8, (i * 16) + 1, TEXT_SPEED_FF, NULL); + PrintTextOnWindow(WIN_OPTIONS, 1, sOptionMenuItemsNames[i], 8, (i * 16) + 1, TEXT_SPEED_FF, NULL); } CopyWindowToVram(WIN_OPTIONS, 3); } |