mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-16 01:35:07 +00:00
change default SAA1099 core to SAASound
This commit is contained in:
parent
a238f5acf0
commit
ab8bace7f4
3 changed files with 3 additions and 3 deletions
|
@ -239,7 +239,7 @@ void DivDispatchContainer::init(DivSystem sys, DivEngine* eng, int chanCount, do
|
||||||
((DivPlatformOPL*)dispatch)->setOPLType(3,true);
|
((DivPlatformOPL*)dispatch)->setOPLType(3,true);
|
||||||
break;
|
break;
|
||||||
case DIV_SYSTEM_SAA1099: {
|
case DIV_SYSTEM_SAA1099: {
|
||||||
int saaCore=eng->getConfInt("saaCore",0);
|
int saaCore=eng->getConfInt("saaCore",1);
|
||||||
if (saaCore<0 || saaCore>2) saaCore=0;
|
if (saaCore<0 || saaCore>2) saaCore=0;
|
||||||
dispatch=new DivPlatformSAA1099;
|
dispatch=new DivPlatformSAA1099;
|
||||||
((DivPlatformSAA1099*)dispatch)->setCore((DivSAACores)saaCore);
|
((DivPlatformSAA1099*)dispatch)->setCore((DivSAACores)saaCore);
|
||||||
|
|
|
@ -547,7 +547,7 @@ class FurnaceGUI {
|
||||||
audioQuality(0),
|
audioQuality(0),
|
||||||
arcadeCore(0),
|
arcadeCore(0),
|
||||||
ym2612Core(0),
|
ym2612Core(0),
|
||||||
saaCore(0),
|
saaCore(1),
|
||||||
mainFont(0),
|
mainFont(0),
|
||||||
patFont(0),
|
patFont(0),
|
||||||
audioRate(44100),
|
audioRate(44100),
|
||||||
|
|
|
@ -861,7 +861,7 @@ void FurnaceGUI::syncSettings() {
|
||||||
settings.audioRate=e->getConfInt("audioRate",44100);
|
settings.audioRate=e->getConfInt("audioRate",44100);
|
||||||
settings.arcadeCore=e->getConfInt("arcadeCore",0);
|
settings.arcadeCore=e->getConfInt("arcadeCore",0);
|
||||||
settings.ym2612Core=e->getConfInt("ym2612Core",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.mainFont=e->getConfInt("mainFont",0);
|
||||||
settings.patFont=e->getConfInt("patFont",0);
|
settings.patFont=e->getConfInt("patFont",0);
|
||||||
settings.mainFontPath=e->getConfString("mainFontPath","");
|
settings.mainFontPath=e->getConfString("mainFontPath","");
|
||||||
|
|
Loading…
Reference in a new issue