aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorWohlstand <admin@wohlnet.ru>2020-09-02 12:04:06 +0300
committerWohlstand <admin@wohlnet.ru>2020-09-02 12:04:06 +0300
commitc42d614399654f83ddba5124f67b2d667efbfa92 (patch)
tree53c792fca2ab6b64081eb1f48fdcc56a75c2c714 /include
parent8bb875fa7ae4ecf81fceb6043ebd2e026aa499fb (diff)
downloadlibADLMIDI-c42d614399654f83ddba5124f67b2d667efbfa92.tar.gz
libADLMIDI-c42d614399654f83ddba5124f67b2d667efbfa92.tar.bz2
libADLMIDI-c42d614399654f83ddba5124f67b2d667efbfa92.zip
Added Generic FM variant of Win9X volume model
Diffstat (limited to 'include')
-rw-r--r--include/adlmidi.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/adlmidi.h b/include/adlmidi.h
index 3a81794..ae52c82 100644
--- a/include/adlmidi.h
+++ b/include/adlmidi.h
@@ -112,14 +112,16 @@ enum ADLMIDI_VolumeModels
ADLMIDI_VolumeModel_DMX = 3,
/*! 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. */
+ /*! Aproximated and shorted volume map table (SB16 driver). Similar to general, but has less granularity. */
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,
/*! Audio Interfaces Library volume scaling model */
- ADLMIDI_VolumeModel_AIL = 8
+ ADLMIDI_VolumeModel_AIL = 8,
+ /*! Aproximated and shorted volume map table (Generic FM driver). Similar to general, but has less granularity. */
+ ADLMIDI_VolumeModel_9X_GENERIC_FM = 9
};
/**