mirror of
https://github.com/a2-4am/4cade.git
synced 2025-02-26 07:29:08 +00:00
fix display of unpacked titles in SS mode
This commit is contained in:
parent
9576a45951
commit
e88da4bf73
@ -11,7 +11,7 @@
|
|||||||
; ...unused...
|
; ...unused...
|
||||||
; E000..E3FF - HGR font data
|
; E000..E3FF - HGR font data
|
||||||
; ...unused...
|
; ...unused...
|
||||||
; E73A..FFEB - main program code
|
; E730..FFEB - main program code
|
||||||
; FFEC..FFF9 - API functions and global constants available for main program
|
; FFEC..FFF9 - API functions and global constants available for main program
|
||||||
; code, prelaunchers, transition effects, &c.
|
; code, prelaunchers, transition effects, &c.
|
||||||
; (LoadFileDirect, Wait/UnwaitForVBL, MockingboardStuff, MachineStatus)
|
; (LoadFileDirect, Wait/UnwaitForVBL, MockingboardStuff, MachineStatus)
|
||||||
|
@ -128,7 +128,13 @@ HGRTitleCallback
|
|||||||
@indexRecordPtr
|
@indexRecordPtr
|
||||||
!word $FDFD ; SMC
|
!word $FDFD ; SMC
|
||||||
|
|
||||||
|
lda $5FFD
|
||||||
|
stx $5FFD ; ensure that we won't find it again if next
|
||||||
|
; file is really compressed
|
||||||
|
cmp #$4C ; Check if screen hole now contains a JMP
|
||||||
|
beq @noUnpack ; if so, file was not packed, so skip unpack
|
||||||
jsr UnpackHGRTitle
|
jsr UnpackHGRTitle
|
||||||
|
@noUnpack
|
||||||
jmp ExecuteTransitionAt6000AndWait
|
jmp ExecuteTransitionAt6000AndWait
|
||||||
|
|
||||||
;------------------------------------------------------------------------------
|
;------------------------------------------------------------------------------
|
||||||
|
Loading…
x
Reference in New Issue
Block a user