aboutsummaryrefslogtreecommitdiff
path: root/keyboards/namecard2x4
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/namecard2x4')
-rw-r--r--keyboards/namecard2x4/namecard2x4.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/keyboards/namecard2x4/namecard2x4.h b/keyboards/namecard2x4/namecard2x4.h
index f2e27a010..f3f699270 100644
--- a/keyboards/namecard2x4/namecard2x4.h
+++ b/keyboards/namecard2x4/namecard2x4.h
@@ -13,8 +13,8 @@
13 * You should have received a copy of the GNU General Public License 13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>. 14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */ 15 */
16#ifndef NAMECARD2X4_H 16
17#define NAMECARD2X4_H 17#pragma once
18 18
19#include "quantum.h" 19#include "quantum.h"
20 20
@@ -24,10 +24,8 @@
24// The second converts the arguments into a two-dimensional array 24// The second converts the arguments into a two-dimensional array
25#define LAYOUT( \ 25#define LAYOUT( \
26 k00, k01, k02, k03, \ 26 k00, k01, k02, k03, \
27 k10, k11, k12, k13 \ 27 k10, k11, k12, k13 \
28) { \ 28) { \
29 { k00, k01, k02, k03 }, \ 29 { k00, k01, k02, k03 }, \
30 { k10, k11, k12, k13 }, \ 30 { k10, k11, k12, k13 } \
31} 31}
32
33#endif