summaryrefslogtreecommitdiffstats
path: root/keyboards
diff options
context:
space:
mode:
authornoroadsleft <xxiinophobia@yahoo.com>2019-01-18 06:07:54 +0100
committerDrashna Jaelre <drashna@live.com>2019-01-18 07:10:54 +0100
commit0ebec1e41124b04d36e32461947539ffd0eb54ac (patch)
tree2b567978c1d2322955db5b1ef654ad93ea6f3815 /keyboards
parentba05f9667b9e33c49249fd456f11e652cbde574b (diff)
downloadqmk_firmware-0ebec1e41124b04d36e32461947539ffd0eb54ac.tar.gz
qmk_firmware-0ebec1e41124b04d36e32461947539ffd0eb54ac.tar.xz
handwired/ortho5x13: layout macro refactor
Discovered the LAYOUT_compact macro didn't compile in QMK Configurator. Realized the reason for that was that it automatically prepends `KC_` to every keycode received. Renamed the macro to LAYOUT_kc so Configurator will ignore it. Also changed the file to use the #pragma once include guard because I was in here anyway.
Diffstat (limited to 'keyboards')
-rw-r--r--keyboards/handwired/ortho5x13/ortho5x13.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/keyboards/handwired/ortho5x13/ortho5x13.h b/keyboards/handwired/ortho5x13/ortho5x13.h
index 93551bd70..a43fc76ae 100644
--- a/keyboards/handwired/ortho5x13/ortho5x13.h
+++ b/keyboards/handwired/ortho5x13/ortho5x13.h
@@ -1,5 +1,4 @@
-#ifndef ORTHO5X13_H
-#define ORTHO5X13_H
+#pragma once
#include "quantum.h"
@@ -18,7 +17,7 @@
{ k40, k41, k42, k43, k44, k45, KC_NO, k47, k48, k49, k4a, k4b, k4c } \
}
-#define LAYOUT_compact( \
+#define LAYOUT_kc( \
k00, k01, k02, k03, k04, k05, k06, k07, k08, k09, k0a, k0b, k0c, \
k10, k11, k12, k13, k14, k15, k16, k17, k18, k19, k1a, k1b, k1c, \
k20, k21, k22, k23, k24, k25, k26, k27, k28, k29, k2a, k2b, k2c, \
@@ -32,5 +31,3 @@
{ KC_##k30, KC_##k31, KC_##k32, KC_##k33, KC_##k34, KC_##k35, KC_##k35, KC_##k37, KC_##k38, KC_##k39, KC_##k3a, KC_##k3b, KC_##k3c }, \
{ KC_##k40, KC_##k41, KC_##k42, KC_##k43, KC_##k44, KC_##k45, KC_NO, KC_##k47, KC_##k48, KC_##k49, KC_##k4a, KC_##k4b, KC_##k4c } \
}
-
-#endif \ No newline at end of file