diff options
author | Wohlstand <admin@wohlnet.ru> | 2016-03-16 04:46:58 +0300 |
---|---|---|
committer | Wohlstand <admin@wohlnet.ru> | 2016-03-16 04:46:58 +0300 |
commit | 4a99693b66a94f841ce1f71f831a1de3e01c26d6 (patch) | |
tree | 313391dddf7c90424ad5b26325a33cccd44501c0 /src/adldata.hh | |
parent | e5b4b9808acaf6bdb2c7a8b4a590da2b203a6cb4 (diff) | |
download | libADLMIDI-4a99693b66a94f841ce1f71f831a1de3e01c26d6.tar.gz libADLMIDI-4a99693b66a94f841ce1f71f831a1de3e01c26d6.tar.bz2 libADLMIDI-4a99693b66a94f841ce1f71f831a1de3e01c26d6.zip |
More accurate DMX fine tune of second voice
Diffstat (limited to 'src/adldata.hh')
-rw-r--r-- | src/adldata.hh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/adldata.hh b/src/adldata.hh index 2f10c4e..301c5df 100644 --- a/src/adldata.hh +++ b/src/adldata.hh @@ -2,7 +2,7 @@ * libADLMIDI is a free MIDI to WAV conversion library with OPL3 emulation * * Original ADLMIDI code: Copyright (c) 2010-2014 Joel Yliluoma <bisqwit@iki.fi> - * ADLMIDI Library API: Copyright (c) 2015 Vitaly Novichkov <admin@wohlnet.ru> + * ADLMIDI Library API: Copyright (c) 2016 Vitaly Novichkov <admin@wohlnet.ru> * * Library is based on the ADLMIDI, a MIDI player for Linux and Windows with OPL3 emulation: * http://iki.fi/bisqwit/source/adlmidi.html @@ -41,6 +41,8 @@ extern const struct adldata unsigned char feedconn; // Feedback/connection bits for the channel signed char finetune; + + bool diff; } adl[]; extern const struct adlinsdata @@ -52,6 +54,7 @@ extern const struct adlinsdata unsigned char flags; unsigned short ms_sound_kon; // Number of milliseconds it produces sound; unsigned short ms_sound_koff; + double fine_tune; } adlins[]; extern const unsigned short banks[][256]; extern const char* const banknames[67]; |