Disable memory > 640kb on XT systems when EGA/VGA cards in use. Patch from Greatpsycho.
This commit is contained in:
parent
1f5fc45c04
commit
077304fb83
1 changed files with 1 additions and 1 deletions
2
src/pc.c
2
src/pc.c
|
|
@ -417,7 +417,7 @@ void resetpchard()
|
|||
disc_load(1, discfns[1]);
|
||||
|
||||
model_init();
|
||||
if (!AT)
|
||||
if (!AT && models[model].max_ram > 640 && models[model].max_ram <= 768 && !video_is_ega_vga())
|
||||
mem_set_704kb();
|
||||
mouse_emu_init();
|
||||
video_init();
|
||||
|
|
|
|||
Loading…
Reference in a new issue