diff options
author | Drashna Jaelre <drashna@live.com> | 2019-03-19 20:57:40 +0100 |
---|---|---|
committer | MechMerlin <30334081+mechmerlin@users.noreply.github.com> | 2019-03-19 20:57:40 +0100 |
commit | 0072fdd799ffe61bf64f12c23335da3adeb083e5 (patch) | |
tree | 7f30d26e4542c5ff3f6da38a75c329f5d0235938 /keyboards/telophase | |
parent | 29bfd634e16e196c86b0a5f63e179af1f9a52902 (diff) | |
download | qmk_firmware-0072fdd799ffe61bf64f12c23335da3adeb083e5.tar.gz qmk_firmware-0072fdd799ffe61bf64f12c23335da3adeb083e5.tar.xz |
Cleanup Default Keymaps (#5442)
* Cleanup Default Keymaps to conform to QMK Firmware standards
* Minor fixes
* Revert some changes
Diffstat (limited to 'keyboards/telophase')
-rw-r--r-- | keyboards/telophase/keymaps/default/keymap.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/keyboards/telophase/keymaps/default/keymap.c b/keyboards/telophase/keymaps/default/keymap.c index d4afa65f9..9cc6c1bb0 100644 --- a/keyboards/telophase/keymaps/default/keymap.c +++ b/keyboards/telophase/keymaps/default/keymap.c @@ -1,7 +1,7 @@ // this is the style you want to emulate. // This is the canonical layout file for the Quantum project. If you want to add another keyboard, -#include "telophase.h" +#include QMK_KEYBOARD_H // Each layer gets a name for readability, which is then used in the keymap matrix below. // The underscores don't mean anything - you can have a layer called STUFF or any other name. @@ -15,7 +15,7 @@ enum telophase_layers _ADJUST, }; -enum telophase_keycodes +enum telophase_keycodes { LOWER = SAFE_RANGE, RAISE, @@ -97,4 +97,3 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { void matrix_scan_user(void) { return; }; - |