From 56415059b056e9567f794942b47df2b609e9d260 Mon Sep 17 00:00:00 2001 From: Vince Weaver Date: Sun, 18 Aug 2019 12:42:15 -0400 Subject: [PATCH] ootw: c1: give some time after getting off rope --- ootw/ootw_c1_beast.s | 12 ++++++++++++ ootw/ootw_c1_pool.s | 3 +++ 2 files changed, 15 insertions(+) diff --git a/ootw/ootw_c1_beast.s b/ootw/ootw_c1_beast.s index 9784e7ef..31429abd 100644 --- a/ootw/ootw_c1_beast.s +++ b/ootw/ootw_c1_beast.s @@ -23,7 +23,19 @@ setup_beast: beq setup_beast_left setup_beast_right: + ; after rope scene, put beast further back so you + ; have time to run a bit + + lda WHICH_CAVE + cmp #4 + bne beast_left_set_normal + + lda #240 + jmp beast_left_set_x + +beast_left_set_normal: lda #248 ; -8 = 248 +beast_left_set_x: sta BEAST_X jmp setup_no_beast diff --git a/ootw/ootw_c1_pool.s b/ootw/ootw_c1_pool.s index 02d9c6da..d16576f7 100644 --- a/ootw/ootw_c1_pool.s +++ b/ootw/ootw_c1_pool.s @@ -14,6 +14,9 @@ ootw_pool: lda #0 sta EARTH_OFFSET + lda #4 + sta WHICH_CAVE + ;=========================== ; Setup pages (is this necessary?)