1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-12 12:29:32 +00:00

Avoid warnings on monochrom targets (and remove unnecessary code).

This commit is contained in:
Oliver Schmidt 2016-06-12 22:56:26 +02:00
parent 524813ff60
commit 98973ee901

View File

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