diff options
Diffstat (limited to 'home')
-rw-r--r-- | home/joypad.asm | 4 | ||||
-rw-r--r-- | home/text.asm | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/home/joypad.asm b/home/joypad.asm index 3d5f0aed5..94d9610de 100644 --- a/home/joypad.asm +++ b/home/joypad.asm @@ -442,10 +442,10 @@ ButtonSound:: ; aaf jr .load_cursor_state .cursor_off - ld a, [TileMap + 17 + 17 * SCREEN_WIDTH] + lda_coord 17, 17 .load_cursor_state - ld [TileMap + 18 + 17 * SCREEN_WIDTH], a + ldcoord_a 18, 17 ret ; b06 diff --git a/home/text.asm b/home/text.asm index 4c6080bb1..191c96172 100644 --- a/home/text.asm +++ b/home/text.asm @@ -697,7 +697,7 @@ PokeFluteTerminatorCharacter:: ; 13e0 PlaceHLTextAtBC:: ; 13e5 ld a, [TextBoxFlags] push af - set 1, a + set NO_TEXT_DELAY_F, a ld [TextBoxFlags], a call DoTextUntilTerminator |