summaryrefslogtreecommitdiff
path: root/video/console.c
diff options
context:
space:
mode:
Diffstat (limited to 'video/console.c')
-rw-r--r--video/console.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/video/console.c b/video/console.c
index 4a04cf1..6eeaf0b 100644
--- a/video/console.c
+++ b/video/console.c
@@ -111,7 +111,7 @@ void scr_nextline()
void scr_put_char(char ch,char col)
{
- lock_spin(6);
+ // lock_spin(6);
if(ch=='\n')scr_nextline();
else if(posx<SCR_WIDTH)
@@ -124,8 +124,7 @@ void scr_put_char(char ch,char col)
if(posx>=SCR_WIDTH)scr_nextline();
#endif
- lock_release(6);
-
+ //lock_release(6);
}
/*