summaryrefslogtreecommitdiff
path: root/src/engine/home.asm
diff options
context:
space:
mode:
authorAndrew Martinek <andrewrmartinek@gmail.com>2020-05-09 15:36:16 -0400
committerAndrew Martinek <andrewrmartinek@gmail.com>2020-05-09 15:36:16 -0400
commite02184fbcd4426fd0774d0dd80268c515d8aadd1 (patch)
treeb3485d353c025520751d7a8d7b1a362bab97bb7a /src/engine/home.asm
parenta1f9dca9f563e6bc82c533f8e3a82edb954b8842 (diff)
changed OWScript to ScriptCommand and OWSequence to Script
Diffstat (limited to 'src/engine/home.asm')
-rw-r--r--src/engine/home.asm8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/engine/home.asm b/src/engine/home.asm
index 24cb61d..478aa39 100644
--- a/src/engine/home.asm
+++ b/src/engine/home.asm
@@ -11087,9 +11087,9 @@ HandleMoveModeAPress: ; 3a5e (0:3a5e)
cp c
jr nz, .noMatch
ld a, [hli]
- ld [wNextOWSequence], a
+ ld [wNextScript], a
ld a, [hli]
- ld [wNextOWSequence+1], a
+ ld [wNextScript+1], a
ld a, [hli]
ld [wDefaultObjectText], a
ld a, [hli]
@@ -11159,9 +11159,9 @@ Func_3ae8: ; 3ae8 (0:3ae8)
ret
; 0x3aed
-; finds an OWScript from the first byte and puts the next two bytes (usually arguments?) into cb
+; finds a Script from the first byte and puts the next two bytes (usually arguments?) into cb
RunOverworldScript: ; 3aed (0:3aed)
- ld hl, wOWScriptPointer
+ ld hl, wScriptPointer
ld a, [hli]
ld h, [hl]
ld l, a