diff options
Diffstat (limited to 'keyboards/crkbd/crkbd.c')
-rw-r--r-- | keyboards/crkbd/crkbd.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/keyboards/crkbd/crkbd.c b/keyboards/crkbd/crkbd.c index ab1381a39..6220c9822 100644 --- a/keyboards/crkbd/crkbd.c +++ b/keyboards/crkbd/crkbd.c | |||
@@ -20,7 +20,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
20 | 20 | ||
21 | #ifdef SWAP_HANDS_ENABLE | 21 | #ifdef SWAP_HANDS_ENABLE |
22 | __attribute__ ((weak)) | 22 | __attribute__ ((weak)) |
23 | const keypos_t hand_swap_config[MATRIX_ROWS][MATRIX_COLS] = { | 23 | const keypos_t PROGMEM hand_swap_config[MATRIX_ROWS][MATRIX_COLS] = { |
24 | // Left | 24 | // Left |
25 | {{0, 4}, {1, 4}, {2, 4}, {3, 4}, {4, 4}, {5, 4}}, | 25 | {{0, 4}, {1, 4}, {2, 4}, {3, 4}, {4, 4}, {5, 4}}, |
26 | {{0, 5}, {1, 5}, {2, 5}, {3, 5}, {4, 5}, {5, 5}}, | 26 | {{0, 5}, {1, 5}, {2, 5}, {3, 5}, {4, 5}, {5, 5}}, |
@@ -33,4 +33,3 @@ const keypos_t hand_swap_config[MATRIX_ROWS][MATRIX_COLS] = { | |||
33 | {{0, 3}, {1, 3}, {2, 3}, {3, 3}, {4, 3}, {5, 3}} | 33 | {{0, 3}, {1, 3}, {2, 3}, {3, 3}, {4, 3}, {5, 3}} |
34 | }; | 34 | }; |
35 | #endif | 35 | #endif |
36 | |||