summaryrefslogtreecommitdiff
path: root/keyboards/handwired/gamenum/gamenum.h
diff options
context:
space:
mode:
authornoroadsleft <18669334+noroadsleft@users.noreply.github.com>2018-12-06 15:19:40 -0800
committerDrashna Jaelre <drashna@live.com>2018-12-06 15:19:40 -0800
commit2fb14845d503f01bc5a15c95c8d1d51be73f98b5 (patch)
tree6364cbab9b45d4d7a5020bafa221ef1658973c54 /keyboards/handwired/gamenum/gamenum.h
parent21bc230dfdc29a03d6cf08b9c0ac438eadd3bf42 (diff)
handwired/gamenum Refactor, Configurator support and readme cleanup (#4563)
* handwired/gamenum: refactor - layout macro KEYMAP renamed to LAYOUT - white space changes for alignment - default keymap - now uses #include QMK_KEYBOARD_H - updated layout macro names - white space changes (for readability) * handwired/gamenum: Configurator support * handwired/gamenum: readme cleanup - renamed file to lowercase - updated to match current QMK template more closely - edits to reflect the other changes in this PR
Diffstat (limited to 'keyboards/handwired/gamenum/gamenum.h')
-rw-r--r--keyboards/handwired/gamenum/gamenum.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/keyboards/handwired/gamenum/gamenum.h b/keyboards/handwired/gamenum/gamenum.h
index ea633b9bfa..3a1429ff8c 100644
--- a/keyboards/handwired/gamenum/gamenum.h
+++ b/keyboards/handwired/gamenum/gamenum.h
@@ -3,19 +3,19 @@
#include "quantum.h"
-#define KEYMAP( \
+#define LAYOUT( \
k00, k01, k02, k03, \
k10, k11, k12, k13, \
- k20, k21, k22, \
- k30, k31, k32, \
- k41, k42, k43 \
+ k20, k21, k22, \
+ k30, k31, k32, \
+ k41, k42, k43 \
) \
{ \
- { k00, k01, k02, k03}, \
- { k10, k11, k12, k13}, \
- { k20, k21, k22, KC_NO}, \
- { k30, k31, k32, KC_NO}, \
- { KC_NO, k41, k42, k43} \
+ { k00, k01, k02, k03 }, \
+ { k10, k11, k12, k13 }, \
+ { k20, k21, k22, KC_NO }, \
+ { k30, k31, k32, KC_NO }, \
+ { KC_NO, k41, k42, k43 } \
}
#endif