diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2019-11-03 12:48:54 -0500 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2019-11-03 12:48:54 -0500 |
commit | 4aeab6b87901a3571b105564576ac356ca527172 (patch) | |
tree | 26e986069d9eb4e58a98a9088ee84235c705fb4f /engine/overworld/scripting.asm | |
parent | 5134266b9a4570f69df5e9bc8a0d91a116da796c (diff) |
Rename buttonsound to promptbutton
Diffstat (limited to 'engine/overworld/scripting.asm')
-rw-r--r-- | engine/overworld/scripting.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/overworld/scripting.asm b/engine/overworld/scripting.asm index 128439205..7f82ea81d 100644 --- a/engine/overworld/scripting.asm +++ b/engine/overworld/scripting.asm @@ -148,7 +148,7 @@ ScriptCommandTable: dw Script_farjumptext ; 52 dw Script_jumptext ; 53 dw Script_waitbutton ; 54 - dw Script_buttonsound ; 55 + dw Script_promptbutton ; 55 dw Script_pokepic ; 56 dw Script_closepokepic ; 57 dw Script__2dmenu ; 58 @@ -398,7 +398,7 @@ Script_waitbutton: jp WaitButton -Script_buttonsound: +Script_promptbutton: ; script command 0x55 ldh a, [hOAMUpdate] @@ -406,7 +406,7 @@ Script_buttonsound: ld a, $1 ldh [hOAMUpdate], a call WaitBGMap - call ButtonSound + call PromptButton pop af ldh [hOAMUpdate], a ret @@ -525,7 +525,7 @@ GiveItemScript: end .Full: - buttonsound + promptbutton pocketisfull end |