From 313e7424d12ddf49174a3468941fb0b0800b8535 Mon Sep 17 00:00:00 2001 From: carl Date: Tue, 30 Nov 1999 02:25:15 +0000 Subject: [PATCH] * GetPixVESA16 bugfix with read segment. --- rtl/go32v2/vesa.inc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/rtl/go32v2/vesa.inc b/rtl/go32v2/vesa.inc index 43343b1c28..2fcd95cc0f 100644 --- a/rtl/go32v2/vesa.inc +++ b/rtl/go32v2/vesa.inc @@ -1065,7 +1065,7 @@ end; Port[$3ce] := 4; shift := 7 - (X and 7); Port[$3cf] := 0; - dummy := (Mem[$a000:offset] shr shift) and 1; + dummy := (Mem[WinReadSeg:offset] shr shift) and 1; Port[$3cf] := 1; dummy := dummy or (((Mem[WinReadSeg:offset] shr shift) and 1) shl 1); Port[$3cf] := 2; @@ -1947,7 +1947,10 @@ end; { $Log$ -Revision 1.3 1999-11-28 12:18:39 jonas +Revision 1.4 1999-11-30 02:25:15 carl + * GetPixVESA16 bugfix with read segment. + +Revision 1.3 1999/11/28 12:18:39 jonas + all available mode numbers are logged if you compile the unit with -dlogging