From 6313b9437c8e903d19b17811759703f4ffe84e9a Mon Sep 17 00:00:00 2001 From: Vince Weaver Date: Sun, 2 Jun 2019 00:51:34 -0400 Subject: [PATCH] pt3: fix issue where "L" loop keypress put wrong char on screen --- pt3_player/interrupt_handler.s | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pt3_player/interrupt_handler.s b/pt3_player/interrupt_handler.s index 94728894..f7187d58 100644 --- a/pt3_player/interrupt_handler.s +++ b/pt3_player/interrupt_handler.s @@ -252,8 +252,8 @@ key_L: ldx #'L'+$80 music_looping: - sta $7D0+18 - sta $BD0+18 + stx $7D0+18 + stx $BD0+18 bcs done_key ; branch always