X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=KernelLand%2FKernel%2Fdrv%2Fvterm_vt100.c;h=0d59a666fc7f6158968087cceb55352a17571a1b;hb=3c283c4831c40c14d308a54cefb997832a860bca;hp=b5d60a946771d47f45aee775037bf90e2abe5a05;hpb=9659f4f4435c25edeafacece13450da80c9d5066;p=tpg%2Facess2.git diff --git a/KernelLand/Kernel/drv/vterm_vt100.c b/KernelLand/Kernel/drv/vterm_vt100.c index b5d60a94..0d59a666 100644 --- a/KernelLand/Kernel/drv/vterm_vt100.c +++ b/KernelLand/Kernel/drv/vterm_vt100.c @@ -5,7 +5,7 @@ * drv/vterm_vt100.c * - Virtual Terminal - VT100 (Kinda) Emulation */ -#define DEBUG 1 +#define DEBUG 0 #include "vterm.h" #define sTerminal sVTerm @@ -44,7 +44,7 @@ void Display_ScrollDown(tTerminal *Term, int CountDown) LOG("(%i)", CountDown); VT_int_UpdateScreen(Term, 0); if( Term->Flags & VT_FLAG_ALTBUF ) - VT_int_ScrollText(Term, CountDown); + VT_int_ScrollText(Term, -CountDown); else { if(Term->ViewTopRow + CountDown < 0)