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_ail.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_ail.h')
-rw-r--r-- | utils/gen_adldata/file_formats/load_ail.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/gen_adldata/file_formats/load_ail.h b/utils/gen_adldata/file_formats/load_ail.h index 286b665..a12789b 100644 --- a/utils/gen_adldata/file_formats/load_ail.h +++ b/utils/gen_adldata/file_formats/load_ail.h @@ -169,7 +169,7 @@ bool BankFormats::LoadMiles(BanksDump &db, const char *fn, unsigned bank, unsigned fb_c = data[offset + 3 + 5]; inst.fbConn = (static_cast<uint_fast16_t>(fb_c & 0x0F)) | (static_cast<uint_fast16_t>((fb_c & 0x0E) | (fb_c >> 7)) << 8); - db.addInstrument(bnk, h.patch, inst, ops); + db.addInstrument(bnk, h.patch, inst, ops, fn); } } |