From 60ce9565a2b58084edbc7f7438a7e2ed10b11dc2 Mon Sep 17 00:00:00 2001 From: Peter Ferrie Date: Tue, 18 Jun 2019 13:43:00 -0400 Subject: [PATCH] pt3: save an instruction in text print --- pt3_player/text_print.s | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pt3_player/text_print.s b/pt3_player/text_print.s index a39506f7..baede5cb 100644 --- a/pt3_player/text_print.s +++ b/pt3_player/text_print.s @@ -62,7 +62,7 @@ point_to_end_string: ;================================ print_both_pages: lda DRAW_PAGE - pha + sta draw_page_smc+1 lda #0 sta DRAW_PAGE @@ -72,7 +72,8 @@ print_both_pages: sta DRAW_PAGE jsr move_and_print - pla +draw_page_smc: + lda #$d1 sta DRAW_PAGE rts ; oops forgot this initially