From 91c97825c622997d16cf1baf80d5e048abd2b1f9 Mon Sep 17 00:00:00 2001 From: Vicki Pfau Date: Thu, 20 Jun 2024 23:21:59 -0700 Subject: [PATCH] DS Core: Fix build --- src/ds/core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ds/core.c b/src/ds/core.c index e5aa99e78..2cc88ce81 100644 --- a/src/ds/core.c +++ b/src/ds/core.c @@ -216,7 +216,7 @@ static void _DSCoreReloadConfigOption(struct mCore* core, const char* option, co } } -static void _DSCoreDesiredVideoDimensions(struct mCore* core, unsigned* width, unsigned* height) { +static void _DSCoreDesiredVideoDimensions(const struct mCore* core, unsigned* width, unsigned* height) { UNUSED(core); *width = DS_VIDEO_HORIZONTAL_PIXELS; *height = DS_VIDEO_VERTICAL_PIXELS * 2;