aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/bell.s7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/bell.s b/src/bell.s
index 6a27503..e64fb6b 100644
--- a/src/bell.s
+++ b/src/bell.s
@@ -7,6 +7,7 @@
DISTVOL = $a8
PITCH = $40
JIFFIES = $03
+FLASH_COLOR = $08
_bell:
lda #<bell_callback
@@ -28,10 +29,8 @@ check_flash:
lda _bell_type
and #2
beq done
- lda #$08
+ lda #FLASH_COLOR
sta COLOR4
- lda #JIFFIES
- sta CDTMV2
done:
rts
@@ -40,6 +39,4 @@ bell_callback:
sta AUDC1
sta AUDF1
sta COLOR4
- lda #JIFFIES
- sta CDTMV2
rts