SMS: add 1.79MHz option

This commit is contained in:
tildearrow 2022-02-24 18:00:19 -05:00
parent 4b6d9adcb9
commit 28254d4b24
2 changed files with 7 additions and 1 deletions

View file

@ -4544,6 +4544,10 @@ bool FurnaceGUI::loop() {
e->setSysFlags(i,(flags&(~3))|2,restart);
updateWindowTitle();
}
if (ImGui::RadioButton("Half NTSC (1.79MHz)",(flags&3)==3)) {
e->setSysFlags(i,(flags&(~3))|3,restart);
updateWindowTitle();
}
ImGui::Text("Chip type:");
if (ImGui::RadioButton("Sega VDP/Master System",((flags>>2)&3)==0)) {
e->setSysFlags(i,(flags&(~12))|0,restart);