1
0
Fork 0

Change 'sblaster.oplemu = default' to select 'nuked'

Nuked emulator implementation seems to be the preferred one by the most
users at the moment.
This commit is contained in:
Patryk Obara 2020-02-14 15:14:52 +01:00 committed by Patryk Obara
parent 47e3e02190
commit 6e89827d2b
2 changed files with 2 additions and 2 deletions

View file

@ -825,7 +825,7 @@ static Handler * make_opl_handler(const std::string &oplemu, OPL_Mode mode)
if (oplemu == "nuked") {
return new NukedOPL::Handler();
}
return new DBOPL::Handler();
return new NukedOPL::Handler();
}
Module::Module(Section *configuration)