From: ol.sc
Date: Thu, 5 May 2011 20:43:10 +0000 (+0000)
Subject: Back to revision 3818: The value of COLOR_WHITE changed back from 3 to 1.
X-Git-Tag: V2.13.3~437
X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=ba7b4d5e869e935159292301476ce018f91787f3;p=cc65
Back to revision 3818: The value of COLOR_WHITE changed back from 3 to 1.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5023 b7a2c559-68d2-44c3-8de9-860c34a00d81
---
diff --git a/libsrc/apple2/color.s b/libsrc/apple2/color.s
index 543fe4156..8994ddf90 100644
--- a/libsrc/apple2/color.s
+++ b/libsrc/apple2/color.s
@@ -7,15 +7,10 @@
;
.export _textcolor, _bgcolor, _bordercolor
- .import return0
+ .import return0, return1
-_bgcolor := return0
-
-_bordercolor := return0
-
-_textcolor:
- ldx #$00
- lda #$03 ; COLOR_WHITE
- rts
+_textcolor := return1
+_bgcolor := return0
+_bordercolor := return0
\ No newline at end of file