diff options
| -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 | 
