diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-09-08 17:06:54 -0700 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-09-08 17:06:54 -0700 |
commit | 78a3951d4718ba0822d76b172366c0d6c129821f (patch) | |
tree | 407e603c3556817786e6ab4ab5c274b708b90cfa /engine/scripting.asm | |
parent | 50232cc92bba60fea431e3709d0f56a04b88c72a (diff) | |
parent | 45e791bb42daffe60cd2ae9c0feec1b5af9124d8 (diff) |
Merge pull request #196 from yenatch/std-scripts
std scripts
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 |