From f4bd30339da2d94387eccd44ee82753cb1abaa75 Mon Sep 17 00:00:00 2001 From: Vicki Pfau Date: Wed, 22 Mar 2017 15:47:11 -0700 Subject: [PATCH] GBA Core: Fix signature --- src/gba/core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gba/core.c b/src/gba/core.c index 69438e2c6..c7a978c64 100644 --- a/src/gba/core.c +++ b/src/gba/core.c @@ -396,7 +396,7 @@ static void _GBACoreSetCursorLocation(struct mCore* core, int x, int y) { UNUSED(y); } -static void _GBACoreSetCursorDown(struct mCore* core, int x, int y, bool down) { +static void _GBACoreSetCursorDown(struct mCore* core, bool down) { UNUSED(core); UNUSED(down); }