From 18e27d61625a545f5d0ac6dac4a8470f15257809 Mon Sep 17 00:00:00 2001 From: Karri Kaksonen Date: Sun, 10 Apr 2022 19:35:29 +0300 Subject: [PATCH] Change attributes on gotoxy --- libsrc/atari7800/setcursor.s | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libsrc/atari7800/setcursor.s b/libsrc/atari7800/setcursor.s index 69cd5f126..34c7562ab 100644 --- a/libsrc/atari7800/setcursor.s +++ b/libsrc/atari7800/setcursor.s @@ -31,7 +31,7 @@ .importzp sp .import _zones .import cursor - .import pusha, incsp1, pusha0, pushax, popax + .import pusha, incsp1, pusha0, pushax, popa .include "atari7800.inc" .include "extzp.inc" @@ -166,13 +166,13 @@ umula0: .proc _gotoxy jsr _gotoy - jsr popax + jsr popa jsr _gotox rts .endproc .proc gotoxy - jsr popax + jsr popa jmp _gotoxy .endproc ;-----------------------------------------------------------------------------