diff options
author | noroadsleft <18669334+noroadsleft@users.noreply.github.com> | 2018-06-09 08:30:51 -0700 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2018-06-09 08:30:51 -0700 |
commit | f6a0adfe360c6f525f7f2af6188e8e5cf586a0c0 (patch) | |
tree | b49b4fea7b9ccb5f1f5d2ff988299caf683a9fdc | |
parent | 710937e4ef1e14d82261fc439aa6fcfcdbd64bf5 (diff) | |
download | qmk_firmware-f6a0adfe360c6f525f7f2af6188e8e5cf586a0c0.tar.gz qmk_firmware-f6a0adfe360c6f525f7f2af6188e8e5cf586a0c0.zip |
Fix KC_P00 macro for ortho_5x4 layout (#3152)
-rw-r--r-- | layouts/default/ortho_5x4/default_ortho_5x4/keymap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/default/ortho_5x4/default_ortho_5x4/keymap.c b/layouts/default/ortho_5x4/default_ortho_5x4/keymap.c index eab7331a5..061f06c38 100644 --- a/layouts/default/ortho_5x4/default_ortho_5x4/keymap.c +++ b/layouts/default/ortho_5x4/default_ortho_5x4/keymap.c | |||
@@ -12,7 +12,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { | |||
12 | switch(keycode) { | 12 | switch(keycode) { |
13 | case KC_P00: | 13 | case KC_P00: |
14 | // types Numpad 0 twice | 14 | // types Numpad 0 twice |
15 | SEND_STRING(SS_TAP(X_P0) SS_TAP(X_P0)); | 15 | SEND_STRING(SS_TAP(X_KP_0) SS_TAP(X_KP_0)); |
16 | return false; | 16 | return false; |
17 | } | 17 | } |
18 | } | 18 | } |