From: cuz Date: Sat, 27 Jul 2002 07:44:51 +0000 (+0000) Subject: Reverse the last change, brain error :-( X-Git-Tag: V2.12.0~2253 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=2a8e2d422c45ec9fc5b86f1ae43a4ac7e46c1858;p=cc65 Reverse the last change, brain error :-( git-svn-id: svn://svn.cc65.org/cc65/trunk@1374 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/libsrc/common/vsprintf.s b/libsrc/common/vsprintf.s index 2313900ae..925e82de5 100644 --- a/libsrc/common/vsprintf.s +++ b/libsrc/common/vsprintf.s @@ -152,13 +152,10 @@ _vsprintf: tya sta (ptr1),y -; Return the number of bytes written. The carry is clear here because of the -; last addition which will never overflow for sane code. +; Return the number of bytes written. lda outdesc ; ccount ldx outdesc+1 - adc #1 ; Account for terminator - bcc @L9 - inx -@L9: rts + rts +