summaryrefslogtreecommitdiff
path: root/video
diff options
context:
space:
mode:
authorMichal Idziorek <m.i@gmx.at>2014-11-23 20:48:34 +0100
committerMichal Idziorek <m.i@gmx.at>2014-11-23 20:48:34 +0100
commit50300fa573bf2bc00f9732e812d54ab77cf03dd7 (patch)
tree7a998723578e601b427e17f9e90e7ce8dbb7c5d2 /video
parent61eff36a01a2639efeb515ec32f578ba99d97ff4 (diff)
mostly pr and cosmetics
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++;
}