diff options
author | Ryan <fauxpark@gmail.com> | 2020-12-16 14:27:23 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-16 14:27:23 +1100 |
commit | 9366ed728280f4875ebbba9c0ef1eade03c96d35 (patch) | |
tree | 93a1b85a28ccf4d4fa0b620ad3abcbf566168506 /keyboards/mxss | |
parent | 37fb14f1b5cbcb0e5ff60abc9152073635234ba4 (diff) |
Normalise include statements in keyboard code (#11185)
Diffstat (limited to 'keyboards/mxss')
-rw-r--r-- | keyboards/mxss/rgblight.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/mxss/rgblight.c b/keyboards/mxss/rgblight.c index 130945857f..2e9352c55d 100644 --- a/keyboards/mxss/rgblight.c +++ b/keyboards/mxss/rgblight.c @@ -20,7 +20,7 @@ # include <avr/interrupt.h> #endif #ifdef STM32_EEPROM_ENABLE -# include "hal.h" +# include <hal.h> # include "eeprom.h" # include "eeprom_stm32.h" #endif @@ -31,7 +31,7 @@ #include "color.h" #include "debug.h" #include "led_tables.h" -#include "lib/lib8tion/lib8tion.h" +#include <lib/lib8tion/lib8tion.h> #ifdef VELOCIKEY_ENABLE # include "velocikey.h" #endif |