.ftm import: improvements
- cut/delay policy is now lax (why was it set to strict?) - macro release mode is now Active (issue #2376)
This commit is contained in:
parent
fa40339bf2
commit
040ceb788d
|
@ -469,6 +469,7 @@ bool DivEngine::loadFTM(unsigned char* file, size_t len, bool dnft, bool dnft_si
|
|||
for (int i = 0; i < 256; i++) {
|
||||
for (int j = 0; j < 8; j++) {
|
||||
macros[i].push_back(DivInstrumentMacro(DIV_MACRO_VOL));
|
||||
macros[i][j].open|=9;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -2744,7 +2745,8 @@ bool DivEngine::loadFTM(unsigned char* file, size_t len, bool dnft, bool dnft_si
|
|||
}
|
||||
}
|
||||
|
||||
ds.delayBehavior=0;
|
||||
// why? I thought FamiTracker was lax
|
||||
//ds.delayBehavior=0;
|
||||
|
||||
ds.version=DIV_VERSION_FTM;
|
||||
ds.insLen = ds.ins.size();
|
||||
|
|
Loading…
Reference in a new issue