diff options
| author | Ryan | 2023-03-19 22:12:05 +0100 |
|---|---|---|
| committer | GitHub | 2023-03-19 22:12:05 +0100 |
| commit | 3c144fac5e2b634166f6b9cc0fc45029d63d3398 (patch) | |
| tree | c3e408ca9fa27721c19f4fc0ba8b4119798e5dd2 /keyboards/palette1202 | |
| parent | 9d302f9b7fa7fc88766de322a52d1a1be38e723c (diff) | |
Clean up usage of `QMK_KEYBOARD_H` (#20167)
Diffstat (limited to 'keyboards/palette1202')
| -rw-r--r-- | keyboards/palette1202/lib/oled_helper.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/keyboards/palette1202/lib/oled_helper.c b/keyboards/palette1202/lib/oled_helper.c index 5fb3cc7539..38608e5a6c 100644 --- a/keyboards/palette1202/lib/oled_helper.c +++ b/keyboards/palette1202/lib/oled_helper.c @@ -1,8 +1,10 @@ -#ifdef OLED_ENABLE -#include QMK_KEYBOARD_H +#include "oled_helper.h" +#include "quantum.h" #include <stdio.h> #include <string.h> +#ifdef OLED_ENABLE + // returns character cord of the logo by line number char *read_logo(int row) { static char logoLines[][18] = { |