From: Brett Gordon Date: Sun, 1 Nov 2015 15:24:37 +0000 (-0500) Subject: vt.c: add vtattr_notify() platform call. X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=a3a01a6dd2e03d5c6f9f61dbca665de582c688ff;p=FUZIX.git vt.c: add vtattr_notify() platform call. --- diff --git a/Kernel/vt.c b/Kernel/vt.c index 0e13506c..48390ac8 100644 --- a/Kernel/vt.c +++ b/Kernel/vt.c @@ -243,17 +243,20 @@ void vtoutput(unsigned char *p, unsigned int len) if (ncursorx >= 0 && ncursorx <= VT_RIGHT) cursorx = ncursorx; vtmode = 0; - } else if (vtmode == 4) { + } else if (vtmode == 4 ){ vtattr = c; vtmode = 0; + vtattr_notify(); continue; } else if (vtmode == 5) { vtink = c; vtmode = 0; + vtattr_notify(); continue; } else if (vtmode == 6) { vtpaper = c; vtmode = 0; + vtattr_notify(); continue; } }