Add PET support

This commit is contained in:
Natt Akuma 2022-03-21 21:02:51 +07:00
parent b45d2be312
commit 47c5c34e1c
7 changed files with 410 additions and 3 deletions

View file

@ -5575,6 +5575,7 @@ bool FurnaceGUI::loop() {
sysAddOption(DIV_SYSTEM_SWAN);
sysAddOption(DIV_SYSTEM_VERA);
sysAddOption(DIV_SYSTEM_BUBSYS_WSG);
sysAddOption(DIV_SYSTEM_PET);
ImGui::EndMenu();
}
if (ImGui::BeginMenu("configure system...")) {
@ -5918,6 +5919,7 @@ bool FurnaceGUI::loop() {
case DIV_SYSTEM_YM2610B:
case DIV_SYSTEM_YM2610B_EXT:
case DIV_SYSTEM_YMU759:
case DIV_SYSTEM_PET:
ImGui::Text("nothing to configure");
break;
default:
@ -5973,6 +5975,7 @@ bool FurnaceGUI::loop() {
sysChangeOption(i,DIV_SYSTEM_SWAN);
sysChangeOption(i,DIV_SYSTEM_VERA);
sysChangeOption(i,DIV_SYSTEM_BUBSYS_WSG);
sysChangeOption(i,DIV_SYSTEM_PET);
ImGui::EndMenu();
}
}