]> git.sur5r.net Git - cc65/commitdiff
Fixed _textcolor definition. master
authorOliver Schmidt <ol.sc@web.de>
Wed, 8 May 2019 08:22:12 +0000 (10:22 +0200)
committerGitHub <noreply@github.com>
Wed, 8 May 2019 08:22:12 +0000 (10:22 +0200)
The _textcolor() macro doesn't just turn on the macro optimization. It defines the return value of textcolor() - and that is supposed to be a COLOR_... value.

include/atari.h

index 4fc027d20fcf1a736e2d4f0c6968b62d259d4c59..582e23be65b6274d7d4a972b3f6263d4dc2b2710 100644 (file)
@@ -540,7 +540,7 @@ extern void atrx15p2_tgi[];
 ** to be overlaid by macros with the same names, saving the function call
 ** overhead.
 */
-#define _textcolor(color)        1
+#define _textcolor(color)        COLOR_WHITE
 
 /* End of atari.h */
 #endif