riven_hgr: release v0.02

This commit is contained in:
Vince Weaver 2024-05-23 00:43:23 -04:00
parent e1895fcf2d
commit 73c72ff8c3
3 changed files with 23 additions and 9 deletions

View File

@ -1,5 +1,5 @@
5 HOME
10 PRINT "LOADING RIVEN SUBSET V0.01"
10 PRINT "LOADING RIVEN SUBSET V0.02"
20 PRINT " RIVEN SCENES"
30 PRINT:PRINT
70 PRINT "BASED ON RIVEN BY CYAN"

View File

@ -62,7 +62,7 @@ location2:
.word $0000 ; west bg
.byte BG_EAST
.byte DIRECTION_E ; special exit
.byte 11,14 ; special x
.byte 119,145 ; special y
.byte 17,23 ; special x
.byte 155,168 ; special y
.word handle2_clicked-1 ; special function

View File

@ -4,7 +4,7 @@
.include "zp.inc"
.include "hardware.inc"
.include "common_defines.inc"
overlays = $2000
@ -203,7 +203,25 @@ done_play_movie1:
done_movie1:
bit KEYRESET
jmp movie1_start
;=============================
; return back to game
lda #LOAD_MAGLEV
sta WHICH_LOAD
lda #DIRECTION_E
sta DIRECTION
lda #RIVEN_READY2GO
sta LOCATION
; needed?
lda #1
sta LEVEL_OVER
; jmp movie1_start
rts
@ -323,10 +341,6 @@ done_pageflip:
;===================================
; .include "../wait_keypress.s"
; .include "draw_boxes.s"
.include "zx02_optim.s"