From a809e4ff022c543662a36c4fca2beb6524cd232d Mon Sep 17 00:00:00 2001 From: Aleksandar Andrejevic Date: Wed, 31 Aug 2016 15:37:53 +0000 Subject: [PATCH] [NTVDM:BIOS] The 640x480x256 video mode has 640 bytes per scanline. svn path=/trunk/; revision=72519 --- reactos/subsystems/mvdm/ntvdm/bios/bios32/vbe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/subsystems/mvdm/ntvdm/bios/bios32/vbe.c b/reactos/subsystems/mvdm/ntvdm/bios/bios32/vbe.c index 91956a5ad4e..735cdd25393 100644 --- a/reactos/subsystems/mvdm/ntvdm/bios/bios32/vbe.c +++ b/reactos/subsystems/mvdm/ntvdm/bios/bios32/vbe.c @@ -43,7 +43,7 @@ static const VBE_MODE_INFO VbeMode_640x480x256_Info = 0xA000, /* Window A segment, or zero if not supported */ 0x0000, /* Window B segment, or zero if not supported */ 0x00000000, /* Window position function pointer */ - 800, /* Bytes per scanline */ + 640, /* Bytes per scanline */ 640, /* Width */ 480, /* Height */ 8, /* Character cell width */