From 6a6c07de6f463e362b3bc9d43e63c3d1b300b806 Mon Sep 17 00:00:00 2001 From: tmk Date: Fri, 28 Apr 2023 14:02:23 +0900 Subject: [PATCH] pc98_usb: Fix warning in config.h --- converter/pc98_usb/config.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/converter/pc98_usb/config.h b/converter/pc98_usb/config.h index b7a00ed7..8c560876 100644 --- a/converter/pc98_usb/config.h +++ b/converter/pc98_usb/config.h @@ -31,6 +31,9 @@ along with this program. If not, see . #define MATRIX_COLS 8 /* key combination for command */ +#ifndef __ASSEMBLER__ +#include "matrix.h" +#endif #define IS_COMMAND() ( \ matrix_is_on(12, 0) || /* STOP */ \ keyboard_report->mods == (MOD_BIT(KC_LALT) | MOD_BIT(KC_RALT)) \