diff options
author | IBNobody <ibnobody@gmail.com> | 2016-04-13 20:57:51 -0500 |
---|---|---|
committer | IBNobody <ibnobody@gmail.com> | 2016-04-13 20:57:51 -0500 |
commit | 3755ef5ddbdad9f25a53fee951c3eb78035b52c3 (patch) | |
tree | 7a495b8756261ab2cc89173c1d250435df1d78ec /quantum/keymap_midi.h | |
parent | 01f5b35396e5558a39e6f35ef9128b96c289c05c (diff) | |
download | firmware-3755ef5ddbdad9f25a53fee951c3eb78035b52c3.tar.gz firmware-3755ef5ddbdad9f25a53fee951c3eb78035b52c3.tar.bz2 firmware-3755ef5ddbdad9f25a53fee951c3eb78035b52c3.zip |
Compiler Warnings / Atomic TLC
Corrected compiler warnings for a number of issues. Gave Atomic some
TLC.
Diffstat (limited to 'quantum/keymap_midi.h')
-rw-r--r-- | quantum/keymap_midi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/keymap_midi.h b/quantum/keymap_midi.h index a89420ce2..436fb2eb5 100644 --- a/quantum/keymap_midi.h +++ b/quantum/keymap_midi.h @@ -20,7 +20,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include <lufa.h> -#define MIDI 0x6000 +#define MIDI(n) (n | 0x6000) #define MIDI12 0x6000, 0x6000, 0x6000, 0x6000, 0x6000, 0x6000, 0x6000, 0x6000, 0x6000, 0x6000, 0x6000, 0x6000 #define CHNL(note, channel) (note + (channel << 8)) |