From 966843dc1d9608d68bc7ae86b3515620b7a2dc69 Mon Sep 17 00:00:00 2001 From: cuz Date: Tue, 25 Mar 2008 19:08:26 +0000 Subject: [PATCH] The value of COLOR_WHITE changed from 1 to 3. git-svn-id: svn://svn.cc65.org/cc65/trunk@3818 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- libsrc/apple2/color.s | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/libsrc/apple2/color.s b/libsrc/apple2/color.s index 8994ddf90..543fe4156 100644 --- a/libsrc/apple2/color.s +++ b/libsrc/apple2/color.s @@ -7,10 +7,15 @@ ; .export _textcolor, _bgcolor, _bordercolor - .import return0, return1 + .import return0 -_textcolor := return1 +_bgcolor := return0 + +_bordercolor := return0 + +_textcolor: + ldx #$00 + lda #$03 ; COLOR_WHITE + rts -_bgcolor := return0 -_bordercolor := return0 \ No newline at end of file -- 2.39.5