diff options
author | Vitaly Novichkov <admin@wohlnet.ru> | 2019-07-08 02:28:48 +0300 |
---|---|---|
committer | Vitaly Novichkov <admin@wohlnet.ru> | 2019-07-08 02:28:48 +0300 |
commit | bfd932874f5e107eaf81c40b87d5c722170a5ace (patch) | |
tree | d3f0dbf53533eb2716d3a62a62c460eeb9cf6ba6 /utils/gen_adldata/file_formats/load_bisqwit.h | |
parent | ddeb2a43fd2bf7361f388b5bc6692b0efc46665c (diff) | |
download | libADLMIDI-bfd932874f5e107eaf81c40b87d5c722170a5ace.tar.gz libADLMIDI-bfd932874f5e107eaf81c40b87d5c722170a5ace.tar.bz2 libADLMIDI-bfd932874f5e107eaf81c40b87d5c722170a5ace.zip |
More accurate silence detector
Now, there are very low level of error! The only one weird condition is still be there...
Diffstat (limited to 'utils/gen_adldata/file_formats/load_bisqwit.h')
-rw-r--r-- | utils/gen_adldata/file_formats/load_bisqwit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/gen_adldata/file_formats/load_bisqwit.h b/utils/gen_adldata/file_formats/load_bisqwit.h index 8ff91b1..7ea3a38 100644 --- a/utils/gen_adldata/file_formats/load_bisqwit.h +++ b/utils/gen_adldata/file_formats/load_bisqwit.h @@ -71,7 +71,7 @@ bool BankFormats::LoadBisqwit(BanksDump &db, const char *fn, unsigned bank, cons inst.fbConn = uint_fast16_t(tmp[0].data[10]) | (uint_fast16_t(tmp[1].data[10]) << 8); inst.percussionKeyNumber = a >= 128 ? tmp2.notenum : 0; inst.noteOffset1 = a < 128 ? tmp2.notenum : 0; - db.addInstrument(bnk, patchId, inst, ops); + db.addInstrument(bnk, patchId, inst, ops, fn); } std::fclose(fp); |