This commit is contained in:
4am 2018-04-17 20:32:31 -04:00
parent 91506d18be
commit bc174b56c4
4 changed files with 9 additions and 3 deletions

View File

@ -5,6 +5,7 @@
; ;
; Public functions ; Public functions
; - ClearInterpreterOptions ; - ClearInterpreterOptions
; - LaunchInterpreterWithNewGame
; - LaunchInterpreterWithGame ; - LaunchInterpreterWithGame
; - LaunchInterpreterWithHints ; - LaunchInterpreterWithHints
; ;
@ -122,7 +123,7 @@ SetInterpreterOptions
beq SetInterpreterOptionsExceptForce40 beq SetInterpreterOptionsExceptForce40
lda #$CE lda #$CE
!byte $2C !byte $2C
; execution falls through here ; execution falls through here
;------------------------------------------------------------------------------ ;------------------------------------------------------------------------------
; SetInterpreterOptionsExceptForce40 ; SetInterpreterOptionsExceptForce40

View File

@ -1,7 +1,7 @@
;license:MIT ;license:MIT
;(c) 2018 by 4am ;(c) 2018 by 4am
; ;
; glue code to load and call ZINFO, the Z-Machine saved game parser ; glue code to load and call ZINFO, the On Beyond Z-Machine! saved game parser
; ;
; Public functions ; Public functions
; - LoadSavedGameInfo ; - LoadSavedGameInfo

View File

@ -65,6 +65,11 @@ ResumeDialog
txs txs
jsr HardResetWeeGUI jsr HardResetWeeGUI
ldx #ID_RESUME_SLOT7
- stz gResumeViewInUse,x ; reset flags for which radio buttons are in use
dex
bne -
jsr LoadSavedGameInfo ; call ZINFO to get the information we need for this dialog jsr LoadSavedGameInfo ; call ZINFO to get the information we need for this dialog
lda gSavedGamesSlotsInUse ; populated by LoadSavedGameInfo lda gSavedGamesSlotsInUse ; populated by LoadSavedGameInfo

View File

@ -65,7 +65,7 @@ VersionsDialog
txs txs
jsr HardResetWeeGUI jsr HardResetWeeGUI
ldx #9 ldx #ID_VERSIONS_9
- stz gVersionsViewInUse,x ; reset flags for which radio buttons are in use (1-9) - stz gVersionsViewInUse,x ; reset flags for which radio buttons are in use (1-9)
dex dex
bne - bne -