Add only one point per enemy killed.

This commit is contained in:
Colin McMillen 2015-06-07 08:57:05 -04:00
parent ac5dcc504a
commit 7eeeca9487

View File

@ -875,9 +875,9 @@ CheckCollisionsWithEnemies:
; TODO: convert to decimal only at display time? ; TODO: convert to decimal only at display time?
SetA16Bit SetA16Bit
sed ; Set decimal mode. sed ; Set decimal mode.
clc
lda playerScore lda playerScore
adc #8 clc
adc #1
sta playerScore sta playerScore
cld ; Clear decimal mode. cld ; Clear decimal mode.
SetA8Bit SetA8Bit