Fixed several aspects of the GEOS CONIO implementation:
- cputc was drawing at the wrong position, therefore one line had to be removed as a workaround. - chline, cvline were drawing one pixel to large lines. - cclear was drawing an in both directions one pixel to big rect. - the cursor was drawn at wrong times at wrong places in a wrong size. git-svn-id: svn://svn.cc65.org/cc65/trunk@5874 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -30,7 +30,7 @@ _cclear:
|
||||
lda cursor_y ; level
|
||||
sta r2L
|
||||
clc
|
||||
adc #8
|
||||
adc #7
|
||||
sta r2H
|
||||
txa ; right end
|
||||
clc
|
||||
@@ -40,6 +40,13 @@ _cclear:
|
||||
ldx #r4
|
||||
ldy #3
|
||||
jsr DShiftLeft
|
||||
clc ; one pixel less
|
||||
lda r4L
|
||||
sbc #0
|
||||
sta r4L
|
||||
lda r4L+1
|
||||
sbc #0
|
||||
sta r4L+1
|
||||
lda curPattern ; store current pattern
|
||||
pha
|
||||
lda #0 ; set pattern to clear
|
||||
|
||||
Reference in New Issue
Block a user