mirror of
https://github.com/cc65/cc65.git
synced 2025-01-10 19:29:45 +00:00
Avoid warnings on monochrom targets (and remove unnecessary code).
This commit is contained in:
parent
524813ff60
commit
98973ee901
@ -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 ();
|
||||
|
Loading…
x
Reference in New Issue
Block a user