From e60c3ee74095f59196e7a4073180e2ffe2a07488 Mon Sep 17 00:00:00 2001 From: nickysn Date: Sat, 14 Sep 2013 12:58:38 +0000 Subject: [PATCH] * Crt.CursorOff: use CX=bash200, instead of CX= for making the cursor invisible; this is the correct value, according to the BIOS documentation I've found and it is also the value used by the go32v2 video unit git-svn-id: trunk@25483 - --- rtl/go32v2/crt.pp | 2 +- rtl/msdos/crt.pp | 2 +- rtl/watcom/crt.pp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/rtl/go32v2/crt.pp b/rtl/go32v2/crt.pp index d381e2b8b3..6013f45402 100644 --- a/rtl/go32v2/crt.pp +++ b/rtl/go32v2/crt.pp @@ -534,7 +534,7 @@ var regs : trealregs; begin regs.realeax:=$0100; - regs.realecx:=$ffff; + regs.realecx:=$0200; realintr($10,regs); end; diff --git a/rtl/msdos/crt.pp b/rtl/msdos/crt.pp index a50742cad2..1ce374b93f 100644 --- a/rtl/msdos/crt.pp +++ b/rtl/msdos/crt.pp @@ -564,7 +564,7 @@ var regs : registers; begin regs.ax:=$0100; - regs.cx:=$ffff; + regs.cx:=$0200; intr($10,regs); end; diff --git a/rtl/watcom/crt.pp b/rtl/watcom/crt.pp index 3911707134..4275149bd5 100644 --- a/rtl/watcom/crt.pp +++ b/rtl/watcom/crt.pp @@ -523,7 +523,7 @@ var regs : trealregs; begin regs.realeax:=$0100; - regs.realecx:=$ffff; + regs.realecx:=$0200; realintr($10,regs); end;