forked from mirrors/qmk_firmware
Removing unnecessary struct definitions
Removed userspace_config unused variables, and removed _NUMLOCK as it isn't used anywhere.
This commit is contained in:
parent
291ef064a7
commit
5b8f1327d8
1 changed files with 0 additions and 4 deletions
|
@ -21,7 +21,6 @@
|
||||||
/* Define layer names */
|
/* Define layer names */
|
||||||
enum userspace_layers {
|
enum userspace_layers {
|
||||||
_QWERTY = 0,
|
_QWERTY = 0,
|
||||||
_NUMLOCK = 0,
|
|
||||||
_COLEMAK,
|
_COLEMAK,
|
||||||
_DVORAK,
|
_DVORAK,
|
||||||
_MODS,
|
_MODS,
|
||||||
|
@ -45,10 +44,7 @@ typedef union {
|
||||||
uint32_t raw;
|
uint32_t raw;
|
||||||
struct {
|
struct {
|
||||||
bool rgb_layer_change :1;
|
bool rgb_layer_change :1;
|
||||||
bool is_overwatch :1;
|
|
||||||
bool nuke_switch :1;
|
bool nuke_switch :1;
|
||||||
uint8_t unicode_mod :4;
|
|
||||||
bool swapped_numbers :1;
|
|
||||||
bool rgb_matrix_idle_anim :1;
|
bool rgb_matrix_idle_anim :1;
|
||||||
};
|
};
|
||||||
} userspace_config_t;
|
} userspace_config_t;
|
||||||
|
|
Loading…
Reference in a new issue