diff options
Diffstat (limited to 'home.asm')
-rw-r--r-- | home.asm | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -472,17 +472,17 @@ CallPointerAt:: ; 31be ; 31cd -ExitMenuCallScript:: ; 31cd -; Push pointer hl in the current bank to wd0e8. +QueueScript:: ; 31cd +; Push pointer hl in the current bank to wQueuedScriptBank. ld a, [hROMBank] -Function31cf:: ; 31cf -; Push pointer a:hl to wd0e8. - ld [wd0e8], a +FarQueueScript:: ; 31cf +; Push pointer a:hl to wQueuedScriptBank. + ld [wQueuedScriptBank], a ld a, l - ld [wd0e9], a + ld [wQueuedScriptAddr], a ld a, h - ld [wd0e9 + 1], a + ld [wQueuedScriptAddr + 1], a ret ; 31db |