diff options
author | JP Cimalando <jpcima@users.noreply.github.com> | 2018-07-23 12:47:57 +0200 |
---|---|---|
committer | JP Cimalando <jpcima@users.noreply.github.com> | 2018-07-23 12:47:57 +0200 |
commit | e340bd10e45299bd8fb5d683c9b0e963aa2ef770 (patch) | |
tree | 95992781a63c1be9514291243d78f7edc40d045b /src/adldata.hh | |
parent | 987d2e0bc2f1fc27869fac87876cb685c22d27b3 (diff) | |
download | libADLMIDI-e340bd10e45299bd8fb5d683c9b0e963aa2ef770.tar.gz libADLMIDI-e340bd10e45299bd8fb5d683c9b0e963aa2ef770.tar.bz2 libADLMIDI-e340bd10e45299bd8fb5d683c9b0e963aa2ef770.zip |
generate velocity offsets from wopl files
Diffstat (limited to 'src/adldata.hh')
-rw-r--r-- | src/adldata.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/adldata.hh b/src/adldata.hh index bb0e883..38a1d9f 100644 --- a/src/adldata.hh +++ b/src/adldata.hh @@ -106,9 +106,9 @@ extern const AdlBankSetup adlbanksetup[]; * @brief Conversion of storage formats */ inline adlinsdata2::adlinsdata2(const adlinsdata &d) - : tone(d.tone), flags(d.flags), midi_velocity_offset(d.midi_velocity_offset), + : tone(d.tone), flags(d.flags), ms_sound_kon(d.ms_sound_kon), ms_sound_koff(d.ms_sound_koff), - voice2_fine_tune(d.voice2_fine_tune) + midi_velocity_offset(d.midi_velocity_offset), voice2_fine_tune(d.voice2_fine_tune) { #ifdef DISABLE_EMBEDDED_BANKS std::memset(adl, 0, sizeof(adldata) * 2); |