From 99a0dce8cd62924da4e763a062749d97721dccce Mon Sep 17 00:00:00 2001 From: Flyinghead Date: Sat, 11 Sep 2021 19:17:36 +0200 Subject: [PATCH] arm build fix --- core/hw/maple/maple_cfg.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/hw/maple/maple_cfg.h b/core/hw/maple/maple_cfg.h index ab861ac41..1a38451dd 100644 --- a/core/hw/maple/maple_cfg.h +++ b/core/hw/maple/maple_cfg.h @@ -75,8 +75,8 @@ struct MapleInputState MapleInputState() : halfAxes{}, fullAxes{} {} u32 kcode = ~0; - u8 halfAxes[PJTI_Count]; // LT, RT - s8 fullAxes[PJAI_Count]; // Left X, Y, Right X, Y + u8 halfAxes[PJTI_Count]; // LT, RT + int8_t fullAxes[PJAI_Count]; // Left X, Y, Right X, Y }; extern MapleInputState mapleInputState[4];