summaryrefslogtreecommitdiff
path: root/kernel/vesa.c
diff options
context:
space:
mode:
authorMichal Idziorek <m.i@gmx.at>2014-09-03 15:26:19 +0200
committerMichal Idziorek <m.i@gmx.at>2014-09-03 15:26:19 +0200
commite5e674724ec527c45efaa1622d0e9a1618757ca3 (patch)
treed7bd7a4d6c9b155b6828171b0a80be5b5bac79cd /kernel/vesa.c
parentfcfa7a7537ed76a63896ec5a9aa39cfc989d761c (diff)
system clock
Diffstat (limited to 'kernel/vesa.c')
-rw-r--r--kernel/vesa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/vesa.c b/kernel/vesa.c
index eaf4edc..55c400c 100644
--- a/kernel/vesa.c
+++ b/kernel/vesa.c
@@ -179,7 +179,7 @@ void PutConsole(char *str, int color, va_list va)
PutFont(*str, console_x*10,console_y*12, color);
str++;
console_x++;
- if(console_x>console_cols)PutConsoleNL();
+ if(console_x>console_cols);//PutConsoleNL();
}
}