diff options
author | mid-kid <esteve.varela@gmail.com> | 2019-05-12 16:45:41 +0200 |
---|---|---|
committer | mid-kid <esteve.varela@gmail.com> | 2019-05-25 17:59:50 +0200 |
commit | 649c8d38da25569a7789128a0da5da72bc280d1a (patch) | |
tree | cb4233797bd9284ab67d29309e360b7c3cff6924 /engine/overworld/scripting.asm | |
parent | 13cfe356d678c69aa5a5e19409408f25a38352cf (diff) |
Get rid of _CRYSTAL
Having this here is completely redundant and useless, and doesn't even
work since it should use `if DEF(_CRYSTAL)` instead.
Diffstat (limited to 'engine/overworld/scripting.asm')
-rw-r--r-- | engine/overworld/scripting.asm | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/engine/overworld/scripting.asm b/engine/overworld/scripting.asm index ee6e15b51..7496b82bd 100644 --- a/engine/overworld/scripting.asm +++ b/engine/overworld/scripting.asm @@ -145,9 +145,7 @@ ScriptCommandTable: dw Script_loadmenu ; 4f dw Script_closewindow ; 50 dw Script_jumptextfaceplayer ; 51 -if _CRYSTAL dw Script_farjumptext ; 52 -endc dw Script_jumptext ; 53 dw Script_waitbutton ; 54 dw Script_buttonsound ; 55 @@ -330,8 +328,6 @@ JumpTextScript: closetext end -if _CRYSTAL - Script_farjumptext: ; script command 0x52 ; parameters: text_pointer @@ -346,8 +342,6 @@ Script_farjumptext: ld hl, JumpTextScript jp ScriptJump -endc - Script_writetext: ; script command 0x4c ; parameters: text_pointer |