diff options
Diffstat (limited to 'Add-a-new-text-scrolling-speed.md')
-rw-r--r-- | Add-a-new-text-scrolling-speed.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Add-a-new-text-scrolling-speed.md b/Add-a-new-text-scrolling-speed.md index 6501a51..bce5b11 100644 --- a/Add-a-new-text-scrolling-speed.md +++ b/Add-a-new-text-scrolling-speed.md @@ -62,7 +62,8 @@ Edit [engine/menus/options_menu.asm](../blob/master/engine/menu/options_menu.asm ld a, c and a jr nz, .Decrease - ld c, OPT_TEXT_SPEED_NONE + 1 +- ld c, OPT_TEXT_SPEED_SLOW + 1 ++ ld c, OPT_TEXT_SPEED_NONE + 1 ``` This will make it cycleable in the options menu but it won't actually work quite yet. We still need to define its string and load the correct previous & next value into registers, otherwise it won't display the selected value correctly. |