From 6497da262a72790e748df1214e95a99cbf814ba5 Mon Sep 17 00:00:00 2001 From: Stefan Date: Sun, 17 Dec 2017 18:45:57 +0100 Subject: [PATCH] oops I made a mistake. --- libsrc/atmos/atmos.s | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libsrc/atmos/atmos.s b/libsrc/atmos/atmos.s index c50204fa5..5822be8d9 100644 --- a/libsrc/atmos/atmos.s +++ b/libsrc/atmos/atmos.s @@ -15,35 +15,35 @@ L1: jmp PING1 .endproc .proc _atmos_shoot - lda $31 + bit $31 bvs L1 ; Atmos? jmp SHOOT L1: jmp SHOOT1 .endproc .proc _atmos_explode - lda $31 + bit $31 bvs L1 ; Atmos? jmp EXPLODE L1: jmp EXPLODE1 .endproc .proc _atmos_zap - lda $31 + bit $31 bvs L1 ; Atmos? jmp ZAP L1: jmp ZAP1 .endproc .proc _atmos_tick - lda $31 + bit $31 bvs L1 ; Atmos? jmp TICK L1: jmp TICK1 .endproc .proc _atmos_tock - lda $31 + bit $31 bvs L1 ; Atmos? jmp TOCK L1: jmp TOCK1