mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-23 21:15:11 +00:00
what?
This commit is contained in:
parent
f8347ac50f
commit
7ea49d7e84
1 changed files with 7 additions and 1 deletions
|
@ -192,7 +192,13 @@ void DivEngine::loadDMP(SafeReader& reader, std::vector<DivInstrument*>& ret, St
|
|||
ins->fm.ops=reader.readC()?4:2;
|
||||
}
|
||||
} else {
|
||||
ins->fm.ops=reader.readC()?2:4;
|
||||
// HELP
|
||||
if (reader.size()==49) {
|
||||
ins->fm.ops=4;
|
||||
reader.readC();
|
||||
} else {
|
||||
ins->fm.ops=reader.readC()?2:4;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
ins->fm.ops=4;
|
||||
|
|
Loading…
Reference in a new issue