diff options
author | yenatch <yenatch@gmail.com> | 2013-09-07 05:08:34 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-09-07 05:08:34 -0400 |
commit | 45e791bb42daffe60cd2ae9c0feec1b5af9124d8 (patch) | |
tree | a348e511e6fa6b6a74d9e15bf0c39d24eb95dba3 /engine/scripting.asm | |
parent | 5376a0c96bd956c3338b629e4d83b7bc68cde25a (diff) |
StdScripts label in engine/scripting.asm
Diffstat (limited to 'engine/scripting.asm')
-rw-r--r-- | engine/scripting.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engine/scripting.asm b/engine/scripting.asm index 5d44d1a8e..e8921a265 100644 --- a/engine/scripting.asm +++ b/engine/scripting.asm @@ -1787,15 +1787,15 @@ StdScript: ; 0x9757b ld e, a call GetScriptByte ld d, a - ld hl, $4000 ; StdScripts + ld hl, StdScripts add hl, de add hl, de add hl, de - ld a, $2f ; BANK(StdScripts) + ld a, BANK(StdScripts) call GetFarByte ld b, a inc hl - ld a, $2f ; BANK(StdScripts) + ld a, BANK(StdScripts) call GetFarHalfword ret ; 0x97596 |