From 5fc98bd69a5309e217b3d6997528ed2fc8a1bc15 Mon Sep 17 00:00:00 2001 From: cuz Date: Mon, 31 May 2004 19:35:30 +0000 Subject: [PATCH] Comment fixes by Stefan Haubenthal git-svn-id: svn://svn.cc65.org/cc65/trunk@3061 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- libsrc/c128/c128-640-200-2.s | 4 ++-- libsrc/c128/c128-640-480-2.s | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libsrc/c128/c128-640-200-2.s b/libsrc/c128/c128-640-200-2.s index 7bd0285d6..f38fbb27e 100644 --- a/libsrc/c128/c128-640-200-2.s +++ b/libsrc/c128/c128-640-200-2.s @@ -607,7 +607,7 @@ LINE: jsr abs sta NY sty NY+1 - ; if (x2>x1) + ; if (x2>=x1) ldx #X2 lda X1 ldy X1+1 @@ -620,7 +620,7 @@ LINE: ; dx = -1; @L0243: lda #$ff @L0244: sta DX - ; if (y2>y1) + ; if (y2>=y1) ldx #Y2 lda Y1 ldy Y1+1 diff --git a/libsrc/c128/c128-640-480-2.s b/libsrc/c128/c128-640-480-2.s index 71755a0e9..5367e5d14 100644 --- a/libsrc/c128/c128-640-480-2.s +++ b/libsrc/c128/c128-640-480-2.s @@ -605,7 +605,7 @@ LINE: jsr abs sta NY sty NY+1 - ; if (x2>x1) + ; if (x2>=x1) ldx #X2 lda X1 ldy X1+1 @@ -618,7 +618,7 @@ LINE: ; dx = -1; @L0243: lda #$ff @L0244: sta DX - ; if (y2>y1) + ; if (y2>=y1) ldx #Y2 lda Y1 ldy Y1+1 -- 2.39.5