ootw: c4: fix issue where fell if xpos was negative

This commit is contained in:
Vince Weaver 2019-08-09 16:38:01 -04:00
parent 37acfc63a2
commit 4f0055370f

View File

@ -477,8 +477,9 @@ done_room_limits:
cmp #18
bcc regular_room ; blt
; only start falling if x>=8
; only start falling if x>=8 and positive
lda PHYSICIST_X
bmi regular_room
cmp #8
bcc regular_room ; blt