summaryrefslogtreecommitdiff
path: root/source/sys_unix.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/sys_unix.c')
-rw-r--r--source/sys_unix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/sys_unix.c b/source/sys_unix.c
index afe3f09..8b4e96c 100644
--- a/source/sys_unix.c
+++ b/source/sys_unix.c
@@ -342,13 +342,13 @@ static void Sys_ParseInput( const char *text ) {
#if 0
case 'C':
if( f->text[f->cursorPos] ) {
- FIFO_Write( &sys_output, "\033[C", 3 );
+ Sys_ConsoleWrite( "\033[C", 3 );
f->cursorPos++;
}
break;
case 'D':
if( f->cursorPos ) {
- FIFO_Write( &sys_output, "\033[D", 3 );
+ Sys_ConsoleWrite( "\033[D", 3 );
f->cursorPos--;
}
break;