diff options
author | Joel Challis <git@zvecr.com> | 2019-12-03 19:48:55 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-03 19:48:55 +0000 |
commit | d598f01cb7b9d4d9e8fc7bbc951b70be7726a468 (patch) | |
tree | 84ca6e81fba9d76777636cd8cfd1c17e7ed13dd8 /quantum/quantum.h | |
parent | 1718dfa658dbe8ad144100b561794c5596ac5f08 (diff) |
Relocate magic keycode processing (#7512)
* Move magic keycode processing to own file
* Save some bytes
* Update comments
* Update define to one thats not already used...
* Fix audio
Diffstat (limited to 'quantum/quantum.h')
-rw-r--r-- | quantum/quantum.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/quantum/quantum.h b/quantum/quantum.h index 91b9170b16..2ee261e60d 100644 --- a/quantum/quantum.h +++ b/quantum/quantum.h @@ -133,6 +133,10 @@ extern layer_state_t layer_state; # include "process_space_cadet.h" #endif +#ifdef MAGIC_KEYCODE_ENABLE +# include "process_magic.h" +#endif + #ifdef HD44780_ENABLE # include "hd44780.h" #endif |