mirror of
https://github.com/a2-4am/4cade.git
synced 2025-01-27 09:34:09 +00:00
allow right arrow to progress slideshow immediately
This commit is contained in:
parent
282fbd9806
commit
e370dbfa93
@ -9,7 +9,7 @@
|
||||
; D000..E4E9 - persistent data structures (gGlobalPrefsStore, gGamesListStore)
|
||||
; ...end of data and start of code are approximate, in between is unused...
|
||||
; ...if they ever overlap, things will go boom...
|
||||
; E9C2..FFF9 - main program code
|
||||
; E9B8..FFF9 - main program code
|
||||
; FFFA..FFFF - NMI, reset, IRQ vectors
|
||||
;
|
||||
; LC RAM BANK 2
|
||||
|
@ -287,6 +287,10 @@ ExecuteTransitionAndWait
|
||||
bmi +
|
||||
dex
|
||||
bpl -
|
||||
+ lda KBD
|
||||
cmp #$95
|
||||
bne +
|
||||
bit CLEARKBD
|
||||
+ rts
|
||||
|
||||
;------------------------------------------------------------------------------
|
||||
|
@ -37,9 +37,9 @@ SearchMode
|
||||
; we want to switch to Browse Mode with the keyboard still hot so
|
||||
; that mode finds and dispatches the arrow key.
|
||||
|
||||
cmp #$8B ; right arrow switches to browse mode
|
||||
cmp #$8B ; up arrow switches to browse mode
|
||||
beq @arrow
|
||||
cmp #$95 ; also up arrow
|
||||
cmp #$95 ; also right arrow
|
||||
beq @arrow
|
||||
cmp #$8A ; also down arrow
|
||||
bne @notArrow
|
||||
|
Loading…
x
Reference in New Issue
Block a user