aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorWohlstand <admin@wohlnet.ru>2020-08-30 21:29:57 +0300
committerWohlstand <admin@wohlnet.ru>2020-08-30 21:35:21 +0300
commita21c9bb00abd359f5b9ea113e56ca74922e87e01 (patch)
treed706e389e8e25ea17285349acf52edf1e9dd3c77 /include
parentf8bf13beafd9f837212c08f38798a5e781d7b5e5 (diff)
downloadlibADLMIDI-a21c9bb00abd359f5b9ea113e56ca74922e87e01.tar.gz
libADLMIDI-a21c9bb00abd359f5b9ea113e56ca74922e87e01.tar.bz2
libADLMIDI-a21c9bb00abd359f5b9ea113e56ca74922e87e01.zip
Added "fixed" DMX and Apogee volume models
These volume models will apply the fix of AM voices behavior
Diffstat (limited to 'include')
-rw-r--r--include/adlmidi.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/adlmidi.h b/include/adlmidi.h
index 4df321d..91356d9 100644
--- a/include/adlmidi.h
+++ b/include/adlmidi.h
@@ -113,7 +113,11 @@ enum ADLMIDI_VolumeModels
/*! Logarithmic volume scale, used in Apogee Sound System. */
ADLMIDI_VolumeModel_APOGEE = 4,
/*! Aproximated and shorted volume map table. Similar to general, but has less granularity. */
- ADLMIDI_VolumeModel_9X = 5
+ ADLMIDI_VolumeModel_9X = 5,
+ /*! DMX model with a fixed bug of AM voices */
+ ADLMIDI_VolumeModel_DMX_Fixed = 6,
+ /*! Apogee model with a fixed bug of AM voices*/
+ ADLMIDI_VolumeModel_APOGEE_Fixed = 7,
};
/**