mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-26 22:43:01 +00:00
really fix Arcade .dmp loading
This commit is contained in:
parent
8af6acb55d
commit
c20bd38898
1 changed files with 3 additions and 1 deletions
|
@ -147,7 +147,7 @@ void DivEngine::loadDMP(SafeReader& reader, std::vector<DivInstrument*>& ret, St
|
||||||
logD("instrument type is C64");
|
logD("instrument type is C64");
|
||||||
break;
|
break;
|
||||||
case 8: // Arcade
|
case 8: // Arcade
|
||||||
ins->type=DIV_INS_FM;
|
ins->type=DIV_INS_OPM;
|
||||||
logD("instrument type is Arcade");
|
logD("instrument type is Arcade");
|
||||||
break;
|
break;
|
||||||
case 9: // Neo Geo
|
case 9: // Neo Geo
|
||||||
|
@ -187,6 +187,8 @@ void DivEngine::loadDMP(SafeReader& reader, std::vector<DivInstrument*>& ret, St
|
||||||
ins->type=DIV_INS_OPLL;
|
ins->type=DIV_INS_OPLL;
|
||||||
} else if (sys==1) {
|
} else if (sys==1) {
|
||||||
ins->type=DIV_INS_OPL;
|
ins->type=DIV_INS_OPL;
|
||||||
|
} else if (sys==8) {
|
||||||
|
ins->type=DIV_INS_OPM;
|
||||||
} else {
|
} else {
|
||||||
ins->type=DIV_INS_FM;
|
ins->type=DIV_INS_FM;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue