change default SAA1099 core to SAASound

This commit is contained in:
tildearrow 2022-03-12 12:53:53 -05:00
parent a238f5acf0
commit ab8bace7f4
3 changed files with 3 additions and 3 deletions

View File

@ -239,7 +239,7 @@ void DivDispatchContainer::init(DivSystem sys, DivEngine* eng, int chanCount, do
((DivPlatformOPL*)dispatch)->setOPLType(3,true);
break;
case DIV_SYSTEM_SAA1099: {
int saaCore=eng->getConfInt("saaCore",0);
int saaCore=eng->getConfInt("saaCore",1);
if (saaCore<0 || saaCore>2) saaCore=0;
dispatch=new DivPlatformSAA1099;
((DivPlatformSAA1099*)dispatch)->setCore((DivSAACores)saaCore);

View File

@ -547,7 +547,7 @@ class FurnaceGUI {
audioQuality(0),
arcadeCore(0),
ym2612Core(0),
saaCore(0),
saaCore(1),
mainFont(0),
patFont(0),
audioRate(44100),

View File

@ -861,7 +861,7 @@ void FurnaceGUI::syncSettings() {
settings.audioRate=e->getConfInt("audioRate",44100);
settings.arcadeCore=e->getConfInt("arcadeCore",0);
settings.ym2612Core=e->getConfInt("ym2612Core",0);
settings.saaCore=e->getConfInt("saaCore",0);
settings.saaCore=e->getConfInt("saaCore",1);
settings.mainFont=e->getConfInt("mainFont",0);
settings.patFont=e->getConfInt("patFont",0);
settings.mainFontPath=e->getConfString("mainFontPath","");