From: Alan Cox Date: Tue, 11 Nov 2014 12:36:01 +0000 (+0000) Subject: vt: Don't assume char is signed (next sdcc will change this, 6502 isnt) X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=d4ab95137a8ce44405c6a1fe95199201c2f2bb4a;p=FUZIX.git vt: Don't assume char is signed (next sdcc will change this, 6502 isnt) --- diff --git a/Kernel/vt.c b/Kernel/vt.c index 541b1c08..be17c30e 100644 --- a/Kernel/vt.c +++ b/Kernel/vt.c @@ -39,8 +39,8 @@ static int vtmode; -static char cursorx; -static char cursory; +static signed char cursorx; +static signed char cursory; static int ncursory; static void cursor_fix(void)