From: cuz Date: Tue, 16 Jul 2002 09:41:00 +0000 (+0000) Subject: Minor optimization X-Git-Tag: V2.12.0~2267 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=87fa3fbdaa306292cde061d56c5581d478d5ac73;p=cc65 Minor optimization git-svn-id: svn://svn.cc65.org/cc65/trunk@1358 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- 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