From: cuz Date: Tue, 25 Mar 2008 19:08:26 +0000 (+0000) Subject: The value of COLOR_WHITE changed from 1 to 3. X-Git-Tag: V2.12.0~39 X-Git-Url: https://git.sur5r.net/?p=cc65;a=commitdiff_plain;h=966843dc1d9608d68bc7ae86b3515620b7a2dc69 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 --- 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