fix initial text- and background colors

This commit is contained in:
mrdudz
2015-09-27 18:36:53 +02:00
parent 9e08c53b01
commit fba28f46f6
3 changed files with 15 additions and 15 deletions

View File

@@ -6,7 +6,7 @@
.destructor soft80_shutdown
.import soft80_kclrscr, soft80_plotinit
.import __textcolor, __bgcolor ; CHECK/FIX
.import soft80_textcolor, soft80_bgcolor
.include "c64.inc"
.include "soft80.inc"
@@ -52,10 +52,12 @@ soft80_init:
jsr soft80_plotinit
lda #1
sta __textcolor
lda #0
sta __bgcolor
lda 646 ; use current textcolor
jsr soft80_textcolor
lda VIC_BG_COLOR0 ; use current bgcolor
and #$0f
jsr soft80_bgcolor
jmp soft80_kclrscr