aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorVitaly Novichkov <admin@wohlnet.ru>2019-02-22 23:39:09 +0300
committerVitaly Novichkov <admin@wohlnet.ru>2019-02-22 23:39:09 +0300
commitc5f8da70da78110dbbaa74ff4ebce6edf5d04be8 (patch)
treeb92284c60efec9652ab313ad032b833ddbbff3f2 /include
parentf21a5030355d27d9562cc62643db0380dc58a84b (diff)
downloadlibADLMIDI-c5f8da70da78110dbbaa74ff4ebce6edf5d04be8.tar.gz
libADLMIDI-c5f8da70da78110dbbaa74ff4ebce6edf5d04be8.tar.bz2
libADLMIDI-c5f8da70da78110dbbaa74ff4ebce6edf5d04be8.zip
Rhythm-mode percussion now works!
Diffstat (limited to 'include')
-rw-r--r--include/adlmidi.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/adlmidi.h b/include/adlmidi.h
index c65d0b4..db9d9cc 100644
--- a/include/adlmidi.h
+++ b/include/adlmidi.h
@@ -30,7 +30,7 @@ extern "C" {
#define ADLMIDI_VERSION_MAJOR 1
#define ADLMIDI_VERSION_MINOR 4
-#define ADLMIDI_VERSION_PATCHLEVEL 0
+#define ADLMIDI_VERSION_PATCHLEVEL 1
#define ADLMIDI_TOSTR_I(s) #s
#define ADLMIDI_TOSTR(s) ADLMIDI_TOSTR_I(s)
@@ -479,11 +479,14 @@ extern ADLMIDI_DECLSPEC int adl_getNumFourOpsChnObtained(struct ADL_MIDIPlayer *
/**
* @brief Override Enable(1) or Disable(0) AdLib percussion mode. -1 - use bank default AdLib percussion mode
*
+ * [DEPRECATED] This function is no more useful and now it makes nothing. Kept for ABI compatibility. Rhythm mode can be set by the bank data only.
+ *
* This function forces rhythm-mode on any bank. The result will work glitchy.
*
* @param device Instance of the library
* @param percmod 0 - disabled, 1 - enabled
*/
+ADLMIDI_DEPRECATED("This function is no more useful and now it makes nothing. Kept for ABI compatibility. Rhythm mode can be set by the bank data only.")
extern ADLMIDI_DECLSPEC void adl_setPercMode(struct ADL_MIDIPlayer *device, int percmod);
/**