diff options
author | Wohlstand <admin@wohlnet.ru> | 2021-12-13 00:23:46 +0300 |
---|---|---|
committer | Wohlstand <admin@wohlnet.ru> | 2021-12-13 00:23:46 +0300 |
commit | 597eb41cd6973dc21663bddb4ebe0a746c37f159 (patch) | |
tree | 41898210efcdb6b48b9fcd1603884873fdeda48c /src/wopl | |
parent | 808ade1aef03d91d3d072dfe139155070dce3459 (diff) | |
download | libADLMIDI-597eb41cd6973dc21663bddb4ebe0a746c37f159.tar.gz libADLMIDI-597eb41cd6973dc21663bddb4ebe0a746c37f159.tar.bz2 libADLMIDI-597eb41cd6973dc21663bddb4ebe0a746c37f159.zip |
Added per-bank MT32 defaults option
This option makes MT32 defaults being set:
- 127 initial volume
- octave-wide pitch bend
Diffstat (limited to 'src/wopl')
-rw-r--r-- | src/wopl/wopl_file.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/wopl/wopl_file.h b/src/wopl/wopl_file.h index 5666ce7..b7d0122 100644 --- a/src/wopl/wopl_file.h +++ b/src/wopl/wopl_file.h @@ -60,7 +60,9 @@ typedef enum WOPLFileFlags /* Enable Deep-Tremolo flag */ WOPL_FLAG_DEEP_TREMOLO = 0x01, /* Enable Deep-Vibrato flag */ - WOPL_FLAG_DEEP_VIBRATO = 0x02 + WOPL_FLAG_DEEP_VIBRATO = 0x02, + /* Enable MT32 defaults (127 initials and octave-wide pitch bend by default, etc.) */ + WOPL_FLAG_MT32 = 0x04 } WOPLFileFlags; /* Volume scaling model implemented in the libADLMIDI */ |