diff options
author | yenatch <yenatch@gmail.com> | 2013-09-24 03:31:00 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-09-24 03:31:00 -0400 |
commit | 8da8dff7cf00647e9c33e10ceb10908a5411ef2a (patch) | |
tree | 56e1e6bf7f27e7e8ee99f941ef72c8f50472f327 | |
parent | 2afb247caa266c27ffb0160da41ec84e77a46138 (diff) |
use a label in wildon/wildoff script command asm
-rw-r--r-- | engine/scripting.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/scripting.asm b/engine/scripting.asm index 481a8c7e4..0555aba58 100644 --- a/engine/scripting.asm +++ b/engine/scripting.asm @@ -2773,7 +2773,7 @@ Unknown_0x979ee: ; 0x979ee Script_wildoff: ; 0x979f5 ; script command 0x38 - ld hl, $d84c + ld hl, StatusFlags set 5, [hl] ret ; 0x979fb @@ -2781,7 +2781,7 @@ Script_wildoff: ; 0x979f5 Script_wildon: ; 0x979fb ; script command 0x37 - ld hl, $d84c + ld hl, StatusFlags res 5, [hl] ret ; 0x97a01 |