aboutsummaryrefslogtreecommitdiff
path: root/users/drashna/drashna.h
diff options
context:
space:
mode:
Diffstat (limited to 'users/drashna/drashna.h')
-rw-r--r--users/drashna/drashna.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/users/drashna/drashna.h b/users/drashna/drashna.h
index 0ba181760..c10ea5114 100644
--- a/users/drashna/drashna.h
+++ b/users/drashna/drashna.h
@@ -25,9 +25,15 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
25#ifdef TAP_DANCE_ENABLE 25#ifdef TAP_DANCE_ENABLE
26# include "tap_dances.h" 26# include "tap_dances.h"
27#endif // TAP_DANCE_ENABLE 27#endif // TAP_DANCE_ENABLE
28#if defined(RGBLIGHT_ENABLE) || defined(RGB_MATRIX_ENABLE) 28#if defined(RGBLIGHT_ENABLE)
29# include "rgb_stuff.h" 29# include "rgb_stuff.h"
30#endif 30#endif
31#if defined(RGB_MATRIX_ENABLE)
32# include "rgb_matrix_stuff.h"
33#endif
34#if defined(OLED_DRIVER_ENABLE)
35# include "oled_stuff.h"
36#endif
31 37
32/* Define layer names */ 38/* Define layer names */
33enum userspace_layers { 39enum userspace_layers {
@@ -70,7 +76,6 @@ typedef union {
70 bool rgb_layer_change :1; 76 bool rgb_layer_change :1;
71 bool is_overwatch :1; 77 bool is_overwatch :1;
72 bool nuke_switch :1; 78 bool nuke_switch :1;
73 uint8_t unicode_mod :4;
74 bool swapped_numbers :1; 79 bool swapped_numbers :1;
75 bool rgb_matrix_idle_anim :1; 80 bool rgb_matrix_idle_anim :1;
76 }; 81 };