diff options
author | Vitaly Novichkov <admin@wohlnet.ru> | 2018-05-31 02:05:58 +0300 |
---|---|---|
committer | Vitaly Novichkov <admin@wohlnet.ru> | 2018-05-31 02:05:58 +0300 |
commit | 56c0cd7f2439898080df2e0a8129b72d2d85ca70 (patch) | |
tree | be843a7c9a7ca52457d110ba04e79dcc28f67b97 /src/adlmidi_private.hpp | |
parent | 30bd206493e8b2dae81e99cffb22266bd3029d3d (diff) | |
download | libADLMIDI-56c0cd7f2439898080df2e0a8129b72d2d85ca70.tar.gz libADLMIDI-56c0cd7f2439898080df2e0a8129b72d2d85ca70.tar.bz2 libADLMIDI-56c0cd7f2439898080df2e0a8129b72d2d85ca70.zip |
Small polishing of volume model and CMF/RSXX tempo
- Removed "Logarithmic volumes" flag as volume models concept successfuly serves this task. "Logarithmic volumes" flag is useless when we have volume models.
- Fixed "too fast" tempo while playing CMF and EA-MUS (aka RSXX) files
Diffstat (limited to 'src/adlmidi_private.hpp')
-rw-r--r-- | src/adlmidi_private.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/adlmidi_private.hpp b/src/adlmidi_private.hpp index e43bd4e..b20a2b4 100644 --- a/src/adlmidi_private.hpp +++ b/src/adlmidi_private.hpp @@ -251,8 +251,8 @@ public: bool AdlPercussionMode; //! Carriers-only are scaled by default by volume level. This flag will tell to scale modulators too. bool ScaleModulators; - //! Required to play CMF files. Can be turned on by using of "CMF" volume model - bool LogarithmicVolumes; + // ! Required to play CMF files. Can be turned on by using of "CMF" volume model + //bool LogarithmicVolumes; //[REPLACED WITH "m_volumeScale == VOLUME_NATIVE", DEPRECATED!!!] // ! Required to play EA-MUS files [REPLACED WITH "m_musicMode", DEPRECATED!!!] //bool CartoonersVolumes; enum MusicMode @@ -268,7 +268,7 @@ public: enum VolumesScale { VOLUME_Generic, - VOLUME_CMF, + VOLUME_NATIVE, VOLUME_DMX, VOLUME_APOGEE, VOLUME_9X |