summaryrefslogtreecommitdiff
path: root/Automatically-make-the-keyboard-switch-to-lowercase-after-the-first-character.md
diff options
context:
space:
mode:
Diffstat (limited to 'Automatically-make-the-keyboard-switch-to-lowercase-after-the-first-character.md')
-rw-r--r--Automatically-make-the-keyboard-switch-to-lowercase-after-the-first-character.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/Automatically-make-the-keyboard-switch-to-lowercase-after-the-first-character.md b/Automatically-make-the-keyboard-switch-to-lowercase-after-the-first-character.md
index 1787b0f..08ebe8b 100644
--- a/Automatically-make-the-keyboard-switch-to-lowercase-after-the-first-character.md
+++ b/Automatically-make-the-keyboard-switch-to-lowercase-after-the-first-character.md
@@ -2,6 +2,7 @@ This wiki tutorial was sourced from Pokecommunity. Thanks to Jaizu for the origi
Go to **[src/naming_screen.c](https://github.com/pret/pokeemerald/blob/master/src/naming_screen.c)** and edit the function ```static bool8 KeyboardKeyHandler_Character(u8 input)```.
+```diff
static bool8 KeyboardKeyHandler_Character(u8 input)
{
TryStartButtonFlash(BUTTON_COUNT, FALSE, FALSE);
@@ -30,6 +31,7 @@ static bool8 KeyboardKeyHandler_Page(u8 input)
else
return FALSE;
}
+```