mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-22 20:45:11 +00:00
compatibility
This commit is contained in:
parent
bfebe15f06
commit
ee4a157447
1 changed files with 16 additions and 0 deletions
|
@ -3951,6 +3951,22 @@ bool DivEngine::preInit(bool noSafeMode) {
|
|||
|
||||
loadConf();
|
||||
|
||||
if (!conf.has("opn1Core")) {
|
||||
if (conf.has("opnCore")) {
|
||||
conf.set("opn1Core",conf.getString("opnCore",""));
|
||||
}
|
||||
}
|
||||
if (!conf.has("opnaCore")) {
|
||||
if (conf.has("opnCore")) {
|
||||
conf.set("opnaCore",conf.getString("opnCore",""));
|
||||
}
|
||||
}
|
||||
if (!conf.has("opnbCore")) {
|
||||
if (conf.has("opnCore")) {
|
||||
conf.set("opnbCore",conf.getString("opnCore",""));
|
||||
}
|
||||
}
|
||||
|
||||
#ifdef HAVE_SDL2
|
||||
String audioDriver=getConfString("sdlAudioDriver","");
|
||||
if (!audioDriver.empty()) {
|
||||
|
|
Loading…
Reference in a new issue