Commit 68774116 authored by Ove Kaaven's avatar Ove Kaaven Committed by Alexandre Julliard

Set default video mode to 3 (80x25 color).

parent b247ab30
......@@ -13,6 +13,7 @@
#include "global.h"
#include "ldt.h"
#include "miscemu.h"
#include "vga.h"
#include "module.h"
#include "task.h"
#include "debug.h"
......@@ -202,7 +203,7 @@ static void DOSMEM_FillBiosSegment(void)
pBiosData->MemSize = 640;
pBiosData->NextKbdCharPtr = 0x1e;
pBiosData->FirstKbdCharPtr = 0x1e;
pBiosData->VideoMode = 0;
pBiosData->VideoMode = 3;
pBiosData->VideoColumns = 80;
pBiosData->VideoPageSize = 80 * 25 * 2;
pBiosData->VideoPageStartAddr = 0xb800;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment