Merge pull request #3439 from lemondrops/bugger-fix

Fix ISABugger not being actually disabled on machines without ISA
This commit is contained in:
Jasmine Iwanek
2023-07-01 08:39:17 -04:00
committed by GitHub
2 changed files with 8 additions and 7 deletions

View File

@@ -5416,7 +5416,7 @@ win_settings_peripherals_proc(HWND hdlg, UINT message, WPARAM wParam, LPARAM lPa
}
settings_enable_window(hdlg, IDC_CHECK_BUGGER, machine_has_bus(temp_machine, MACHINE_BUS_ISA));
settings_set_check(hdlg, IDC_CHECK_BUGGER, temp_bugger);
settings_set_check(hdlg, IDC_CHECK_BUGGER, (temp_bugger && machine_has_bus(temp_machine, MACHINE_BUS_ISA)));
settings_set_check(hdlg, IDC_CHECK_POSTCARD, temp_postcard);
free(stransi);