diff options
author | Ryan <fauxpark@gmail.com> | 2020-06-08 15:49:18 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-07 22:49:18 -0700 |
commit | 407d6a2b6779aa7ef4f87b53521aef3c3854f824 (patch) | |
tree | 1356662030acaa56347ce4b56fab3fd127d8f9fa /layouts | |
parent | d7523c1260d3154a16d223060a24e32d18ebb1a2 (diff) |
[Keyboard] Fix error_log complaint about handwired/onekey layout macro (#9263)
Diffstat (limited to 'layouts')
-rw-r--r-- | layouts/community/ortho_1x1/test/keymap.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/layouts/community/ortho_1x1/test/keymap.c b/layouts/community/ortho_1x1/test/keymap.c index 6a186669b0..8821823d99 100644 --- a/layouts/community/ortho_1x1/test/keymap.c +++ b/layouts/community/ortho_1x1/test/keymap.c @@ -2,11 +2,6 @@ /* This keyboard/layout is used to test community layout discovery/compilation. */ -#define _DEFAULT 0 - const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { - -[_DEFAULT] = LAYOUT ( - KC_B -), + LAYOUT_ortho_1x1(KC_B) }; |