From 899fbdf1e40a085204dfbbc61bb8d541724b0f33 Mon Sep 17 00:00:00 2001 From: Vicki Pfau Date: Sun, 9 Jan 2022 00:11:53 -0800 Subject: [PATCH] 3DS: Fix warnings --- src/platform/3ds/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/platform/3ds/main.c b/src/platform/3ds/main.c index fb4152867..71fcc1aa2 100644 --- a/src/platform/3ds/main.c +++ b/src/platform/3ds/main.c @@ -190,7 +190,7 @@ static void _cleanup(void) { mcuHwcExit(); } -static void _map3DSKey(struct mInputMap* map, int ctrKey, enum GBAKey key) { +static void _map3DSKey(struct mInputMap* map, int ctrKey, int key) { mInputBindKey(map, _3DS_INPUT, __builtin_ctz(ctrKey), key); }