From 87fa3fbdaa306292cde061d56c5581d478d5ac73 Mon Sep 17 00:00:00 2001 From: cuz Date: Tue, 16 Jul 2002 09:41:00 +0000 Subject: [PATCH] Minor optimization git-svn-id: svn://svn.cc65.org/cc65/trunk@1358 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- libsrc/common/strerror.s | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libsrc/common/strerror.s b/libsrc/common/strerror.s index 6149c42fc..79bf7127a 100644 --- a/libsrc/common/strerror.s +++ b/libsrc/common/strerror.s @@ -21,8 +21,7 @@ _strerror: ; Load the pointer to the error message and return - lda __sys_errlist+1,y - tax + ldx __sys_errlist+1,y lda __sys_errlist,y rts -- 2.39.5