diff --git a/src/AdlMidiImports.cs b/src/AdlMidiImports.cs index f12a4e1..6a37de0 100644 --- a/src/AdlMidiImports.cs +++ b/src/AdlMidiImports.cs @@ -119,14 +119,6 @@ public struct Bank public IntPtr Pointer2; } - /// - /// Version of the instrument data format - /// - public enum InstrumentVersion - { - ADLMIDI_InstrumentVersion = 0 - } - #region Setup /// @@ -910,7 +902,7 @@ public struct AdlVersion /// /// Perform a system exclusive message /// Instance of the library - /// Raw SysEx message buffer (must begin with 0xF0 and end with 0xF7) + /// Raw SysEx message buffer (must begin with 0xF0 and end with 0xF7) /// Size of given SysEx message buffer /// 1 when SysEx message was successfully processed, 0 when SysEx message was rejected for any reason /// diff --git a/src/Modulation.cs b/src/Modulation.cs index 99a0c9c..a7889b9 100644 --- a/src/Modulation.cs +++ b/src/Modulation.cs @@ -5,9 +5,11 @@ namespace ADLMidi.NET [Flags] public enum Modulation : byte { + // ReSharper disable InconsistentNaming // Two operator: FM = 0, AM = 1, + // ReSharper restore InconsistentNaming Feedback1 = 2, Feedback2 = 4,