mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-12-28 09:30:41 +00:00
mist: fix down button
control-J is same as down, oops, can't use that to enable joystick
This commit is contained in:
parent
93e13c5e35
commit
a886d51804
10
mist/TODO
10
mist/TODO
@ -1,5 +1,10 @@
|
|||||||
For release 1.0
|
For release 1.0
|
||||||
|
|
||||||
|
+ real harware
|
||||||
|
- down button doesn't work?
|
||||||
|
- myst title doesn't display long enough
|
||||||
|
- can't access right-hand rooms in octagon?
|
||||||
|
|
||||||
+ LOADER
|
+ LOADER
|
||||||
-- save game
|
-- save game
|
||||||
-- joystick support
|
-- joystick support
|
||||||
@ -10,11 +15,6 @@ For release 1.0
|
|||||||
-- open door to clock puzzle?
|
-- open door to clock puzzle?
|
||||||
|
|
||||||
+ OCTAGON
|
+ OCTAGON
|
||||||
-- code book
|
|
||||||
-- red book seen when in fireplace
|
|
||||||
-- books destroyed at end
|
|
||||||
-- pages removed at end
|
|
||||||
-- green book no talking at end?
|
|
||||||
-- load "red page" sound into LC and play it?
|
-- load "red page" sound into LC and play it?
|
||||||
|
|
||||||
+ SELENA
|
+ SELENA
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
42 PRINT " MOVE CURSOR : ARROWS OR WASD"
|
42 PRINT " MOVE CURSOR : ARROWS OR WASD"
|
||||||
44 PRINT " FORWARD/ACTION : ENTER"
|
44 PRINT " FORWARD/ACTION : ENTER"
|
||||||
46 PRINT
|
46 PRINT
|
||||||
50 PRINT " JOYSTICK (TODO): CONTROL-J"
|
50 PRINT " JOYSTICK (TODO): CONTROL-P"
|
||||||
53 PRINT " LOAD GAME : CONTROL-L"
|
53 PRINT " LOAD GAME : CONTROL-L"
|
||||||
56 PRINT " SAVE (TODO) : CONTROL-S"
|
56 PRINT " SAVE (TODO) : CONTROL-S"
|
||||||
58 PRINT " TOGGLE SOUND : CONTROL-T"
|
58 PRINT " TOGGLE SOUND : CONTROL-T"
|
||||||
|
@ -21,8 +21,9 @@ check_sound:
|
|||||||
sta SOUND_STATUS
|
sta SOUND_STATUS
|
||||||
jmp done_keypress
|
jmp done_keypress
|
||||||
|
|
||||||
|
; can't be ^J as that's the same as down
|
||||||
check_joystick:
|
check_joystick:
|
||||||
cmp #$A ; control-J
|
cmp #$10 ; control-P
|
||||||
bne check_load
|
bne check_load
|
||||||
|
|
||||||
lda JOYSTICK_ENABLED
|
lda JOYSTICK_ENABLED
|
||||||
|
Loading…
Reference in New Issue
Block a user