Tank shapes selection added.

Better appearance of tanks on title screen.
This commit is contained in:
Pecusx
2022-11-26 14:57:54 +01:00
parent 9c912d4cc7
commit 091335dbc9
11 changed files with 27 additions and 13 deletions
+9 -2
View File
@@ -171,6 +171,7 @@ FirstZpageVariable = $61
_del = $fc ;$0c ;not used in 5200
_M = $0d
_S = $0e
_atari = $fd ; not used in 5200
_none = $0f
.ende */
@@ -1739,14 +1740,20 @@ notpressedJoyGetKey
;fire
lda STRIG0
beq JoyButton
.IF TARGET = 800 ; Select key only on A800
.IF TARGET = 800 ; Select and Option key only on A800
bne checkSelectKey
checkSelectKey
lda CONSOL
and #%00000010
and #%00000010 ; Select
beq SelectPressed
lda CONSOL
and #%00000100 ; Option
.ENDIF
bne @-
OptionPressed
lda #@kbcode._atari ; Option key
bne getkeyend
SelectPressed
lda #@kbcode._tab ; Select key
bne getkeyend
JoyButton