Brought CGA code in line with mainline as the patch was accepted.
Uncommented auto-setting FDC data rate to 250 kbps on non-AT machines; fixes floppies on IBM PC and XT and clones; Removed flto flag from the makefiles, should speed up compile times and make the XT and earlier machines work again; Removed CGA brown and color burst settings in line with mainline PCem.
This commit is contained in:
4
src/pc.c
4
src/pc.c
@@ -673,8 +673,6 @@ void loadconfig(char *fn)
|
||||
|
||||
force_43 = config_get_int(NULL, "force_43", 0);
|
||||
enable_overscan = config_get_int(NULL, "enable_overscan", 0);
|
||||
cga_color_burst = config_get_int(NULL, "cga_color_burst", 1);
|
||||
cga_brown = config_get_int(NULL, "cga_brown", 1);
|
||||
enable_flash = config_get_int(NULL, "enable_flash", 1);
|
||||
|
||||
enable_sync = config_get_int(NULL, "enable_sync", 0);
|
||||
@@ -768,8 +766,6 @@ void saveconfig()
|
||||
|
||||
config_set_int(NULL, "force_43", force_43);
|
||||
config_set_int(NULL, "enable_overscan", enable_overscan);
|
||||
config_set_int(NULL, "cga_color_burst", cga_color_burst);
|
||||
config_set_int(NULL, "cga_brown", cga_brown);
|
||||
config_set_int(NULL, "enable_flash", enable_flash);
|
||||
|
||||
config_set_int(NULL, "enable_sync", enable_sync);
|
||||
|
||||
Reference in New Issue
Block a user