Added initial (and a bit buggy on OS/2, so use 8514/A on it instead) emulation of XGA for both MCA and ISA buses.

This commit is contained in:
TC1995
2022-06-17 21:26:26 +02:00
parent dce5055d9c
commit 9e44719f13
9 changed files with 3254 additions and 4 deletions

View File

@@ -931,6 +931,7 @@ load_video(void)
voodoo_enabled = !!config_get_int(cat, "voodoo", 0);
ibm8514_enabled = !!config_get_int(cat, "8514a", 0);
xga_enabled = !!config_get_int(cat, "xga", 0);
}
@@ -2474,6 +2475,11 @@ save_video(void)
else
config_set_int(cat, "8514a", ibm8514_enabled);
if (xga_enabled == 0)
config_delete_var(cat, "xga");
else
config_set_int(cat, "xga", xga_enabled);
delete_section_if_empty(cat);
}