summaryrefslogtreecommitdiff
path: root/video
diff options
context:
space:
mode:
Diffstat (limited to 'video')
-rw-r--r--video/console.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/console.c b/video/console.c
index ae5d720..5b6e103 100644
--- a/video/console.c
+++ b/video/console.c
@@ -113,7 +113,7 @@ void scr_put_char(char ch,char col)
if(ch=='\n')scr_nextline();
else if(posx<SCR_WIDTH)
{
- print_char_col(posx,posy,ch,SCR_WHITE);
+ print_char_col(posx,posy,ch,SCR_GREEN);
posx++;
}