RIP screens and graphics fixes

This commit is contained in:
Pecusx
2025-03-05 09:55:37 +01:00
parent d91e57f146
commit 63eaa84e4b
13 changed files with 644 additions and 55 deletions
+614 -46
View File
File diff suppressed because it is too large Load Diff
+8
View File
@@ -278,3 +278,11 @@ print_lines(dta, -9, -1)
print('RIPscreen_r_branch ; page 4')
dta = load_atrview('rip.atrview', page=4)
print_lines(dta, -9, -1)
print('RIPscreen_l_Rbranch ; page 5')
dta = load_atrview('rip.atrview', page=5)
print_lines(dta, -9, -1)
print('RIPscreen_r_Lbranch ; page 6')
dta = load_atrview('rip.atrview', page=6)
print_lines(dta, -9, -1)
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
+15 -2
View File
@@ -458,13 +458,26 @@ LevelOver
lda LumberjackDir ; branch and Lumerjack ?
cmp branches_list+5
beq BranchDeath
;no branch
;no branch death
cmp #1
bne leftside
; right branch
; right death
lda branches_list+5
beq no_branch_r
; left side branch
mwa #RIPscreen_r_Lbranch animation_addr
rts
no_branch_r
mwa #RIPscreen_r_nobranch animation_addr
rts
leftside
; right death
lda branches_list+5
beq no_branch_l
; right side branch
mwa #RIPscreen_l_Rbranch animation_addr
rts
no_branch_l
mwa #RIPscreen_l_nobranch animation_addr
rts
BranchDeath
BIN
View File
Binary file not shown.