SCV unification

This commit is contained in:
tildearrow 2025-03-10 04:05:12 -05:00
parent 85981822fa
commit d853c59b3d
14 changed files with 114 additions and 557 deletions

View file

@ -1320,7 +1320,6 @@ const int availableSystems[]={
DIV_SYSTEM_OPL4_DRUMS,
DIV_SYSTEM_SUPERVISION,
DIV_SYSTEM_UPD1771C,
DIV_SYSTEM_UPD1771C_TONE,
DIV_SYSTEM_SID3,
0 // don't remove this last one!
};
@ -1426,7 +1425,6 @@ const int chipsSpecial[]={
DIV_SYSTEM_SID2,
DIV_SYSTEM_SUPERVISION,
DIV_SYSTEM_UPD1771C,
DIV_SYSTEM_UPD1771C_TONE,
DIV_SYSTEM_SID3,
0 // don't remove this last one!
};

View file

@ -1569,15 +1569,10 @@ void FurnaceGUI::initSystemPresets() {
}
);
ENTRY(
"Epoch Super Cassette Vision (wave mode)", {
"Epoch Super Cassette Vision", {
CH(DIV_SYSTEM_UPD1771C, 1.0f, 0, "")
}
);
ENTRY(
"Epoch Super Cassette Vision (tone mode)", {
CH(DIV_SYSTEM_UPD1771C_TONE, 1.0f, 0, "")
}
);
CATEGORY_END;
CATEGORY_BEGIN(_("Arcade systems"),_("INSERT COIN"));

View file

@ -2665,7 +2665,6 @@ bool FurnaceGUI::drawSysConf(int chan, int sysPos, DivSystem type, DivConfig& fl
case DIV_SYSTEM_BIFURCATOR:
case DIV_SYSTEM_POWERNOISE:
case DIV_SYSTEM_UPD1771C:
case DIV_SYSTEM_UPD1771C_TONE:
break;
case DIV_SYSTEM_YMU759:
case DIV_SYSTEM_ESFM:

View file

@ -282,11 +282,11 @@ const char* FurnaceGUI::getSystemPartNumber(DivSystem sys, DivConfig& flags) {
break;
case DIV_SYSTEM_ESFM:
return "ES1xxx";
break;
case DIV_SYSTEM_SUPERVISION:
return "Watara Supervision";
break;
case DIV_SYSTEM_UPD1771C:
case DIV_SYSTEM_UPD1771C_TONE:
return "μPD1771C-017";
break;
default: