diff options
author | JP Cimalando <jpcima@users.noreply.github.com> | 2018-07-31 02:31:47 +0200 |
---|---|---|
committer | JP Cimalando <jpcima@users.noreply.github.com> | 2018-07-31 02:31:47 +0200 |
commit | e098e4285af6d565d7b603279ec6e9770ce88436 (patch) | |
tree | c3bb9838043fed8a682bf071d80c64c53f6150e3 /src/chips/dosbox/dbopl.h | |
parent | 626354e6d686d20c43b4d9aa929b85840e6e1015 (diff) | |
download | libADLMIDI-e098e4285af6d565d7b603279ec6e9770ce88436.tar.gz libADLMIDI-e098e4285af6d565d7b603279ec6e9770ce88436.tar.bz2 libADLMIDI-e098e4285af6d565d7b603279ec6e9770ce88436.zip |
fix some warnings
Diffstat (limited to 'src/chips/dosbox/dbopl.h')
-rw-r--r-- | src/chips/dosbox/dbopl.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/chips/dosbox/dbopl.h b/src/chips/dosbox/dbopl.h index c265fc6..429735f 100644 --- a/src/chips/dosbox/dbopl.h +++ b/src/chips/dosbox/dbopl.h @@ -75,13 +75,13 @@ typedef enum { sm3AMAM, sm6Start, sm2Percussion, - sm3Percussion, + sm3Percussion } SynthMode; //Shifts for the values contained in chandata variable enum { SHIFT_KSLBASE = 16, - SHIFT_KEYCODE = 24, + SHIFT_KEYCODE = 24 }; struct Operator { @@ -91,7 +91,7 @@ public: MASK_KSR = 0x10, MASK_SUSTAIN = 0x20, MASK_VIBRATO = 0x40, - MASK_TREMOLO = 0x80, + MASK_TREMOLO = 0x80 }; typedef enum { @@ -99,7 +99,7 @@ public: RELEASE, SUSTAIN, DECAY, - ATTACK, + ATTACK } State; VolumeHandler volHandler; |