]> git.sur5r.net Git - cc65/commitdiff
Avoid warnings on monochrom targets (and remove unnecessary code).
authorOliver Schmidt <ol.sc@web.de>
Sun, 12 Jun 2016 20:56:26 +0000 (22:56 +0200)
committerOliver Schmidt <ol.sc@web.de>
Sun, 12 Jun 2016 21:30:29 +0000 (23:30 +0200)
samples/hello.c

index 385112367fac1e3ca1ddb6f1ca9f1e252a4aa446..854e9a4b4d5071decfc68bb3536bd9c668b621cf 100644 (file)
@@ -34,11 +34,10 @@ int main (void)
 {
     unsigned char XSize, YSize;
 
-    /* Set screen colors, hide the cursor */
-    textcolor (COLOR_WHITE);
-    bordercolor (COLOR_BLACK);
-    bgcolor (COLOR_BLACK);
-    cursor (0);
+    /* Set screen colors */
+    (void) textcolor (COLOR_WHITE);
+    (void) bordercolor (COLOR_BLACK);
+    (void) bgcolor (COLOR_BLACK);
 
     /* Clear the screen, put cursor in upper left corner */
     clrscr ();