really fix Arcade .dmp loading

This commit is contained in:
tildearrow 2022-11-27 15:57:50 -05:00
parent 8af6acb55d
commit c20bd38898
1 changed files with 3 additions and 1 deletions

View File

@ -147,7 +147,7 @@ void DivEngine::loadDMP(SafeReader& reader, std::vector<DivInstrument*>& ret, St
logD("instrument type is C64");
break;
case 8: // Arcade
ins->type=DIV_INS_FM;
ins->type=DIV_INS_OPM;
logD("instrument type is Arcade");
break;
case 9: // Neo Geo
@ -187,6 +187,8 @@ void DivEngine::loadDMP(SafeReader& reader, std::vector<DivInstrument*>& ret, St
ins->type=DIV_INS_OPLL;
} else if (sys==1) {
ins->type=DIV_INS_OPL;
} else if (sys==8) {
ins->type=DIV_INS_OPM;
} else {
ins->type=DIV_INS_FM;
}