Skip to content

Commit

Permalink
.ftm import: improvements
Browse files Browse the repository at this point in the history
- cut/delay policy is now lax (why was it set to strict?)
- macro release mode is now Active (issue #2376)
  • Loading branch information
tildearrow committed Feb 21, 2025
1 parent fa40339 commit 040ceb7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/engine/fileOps/ftm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}

Expand Down Expand Up @@ -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();
Expand Down

0 comments on commit 040ceb7

Please sign in to comment.