Skip to content

Commit

Permalink
correct include
Browse files Browse the repository at this point in the history
  • Loading branch information
jackhumbert committed Jun 25, 2016
1 parent 5677ee2 commit 887e4d8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ endif

ifeq ($(strip $(UNICODE_ENABLE)), yes)
OPT_DEFS += -DUNICODE_ENABLE
SRC += $(QUANTUM_DIR)/process_keycode/process_music.c
SRC += $(QUANTUM_DIR)/process_keycode/process_unicode.c
endif

ifeq ($(strip $(RGBLIGHT_ENABLE)), yes)
Expand Down
11 changes: 2 additions & 9 deletions quantum/quantum.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,6 @@
#ifdef RGBLIGHT_ENABLE
#include "rgblight.h"
#endif
#ifdef AUDIO_ENABLE
#include "audio.h"
#endif
#ifdef MIDI_ENABLE
#include <lufa.h>
#endif
#ifdef UNICODE_ENABLE
#include "unicode.h"
#endif

#include "action_layer.h"
#include "eeconfig.h"
Expand All @@ -40,10 +31,12 @@ extern uint32_t default_layer_state;
#endif

#ifdef MIDI_ENABLE
#include <lufa.h>
#include "process_midi.h"
#endif

#ifdef AUDIO_ENABLE
#include "audio.h"
#include "process_music.h"
#endif

Expand Down

0 comments on commit 887e4d8

Please sign in to comment.