diff options
Diffstat (limited to 'common/debug.h')
-rw-r--r-- | common/debug.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/debug.h b/common/debug.h index 26472c8fa3..472dd478c4 100644 --- a/common/debug.h +++ b/common/debug.h @@ -29,7 +29,6 @@ extern "C" { #endif typedef union { - uint8_t raw; struct { bool enable:1; bool matrix:1; @@ -37,6 +36,7 @@ typedef union { bool mouse:1; uint8_t reserved:4; }; + uint8_t raw; } debug_config_t; extern debug_config_t debug_config; |