From 5c0e32348dbb573d8ad0bb80f5fdb30d6ea5e1dd Mon Sep 17 00:00:00 2001 From: Agent X <44549182+AgentXLP@users.noreply.github.com> Date: Mon, 24 Jun 2024 14:11:32 -0400 Subject: [PATCH] Small fix --- src/pc/platform.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pc/platform.c b/src/pc/platform.c index 098338c0..f3cdce1b 100644 --- a/src/pc/platform.c +++ b/src/pc/platform.c @@ -116,7 +116,7 @@ const char *sys_user_path(void) return NULL; } - LPCWSTR subdirs[] = { L"sm64coopdx", L"sm64ex-coop", NULL }; + LPCWSTR subdirs[] = { L"sm64coopdx", L"sm64ex-coop", L"sm64coopdx", NULL }; for (int i = 0; NULL != subdirs[i]; i++) { @@ -176,7 +176,7 @@ const char *sys_user_path(void) { static char path[SYS_MAX_PATH] = { 0 }; if ('\0' != path[0]) { return path; } - char const *subdirs[] = { "sm64coopdx", "sm64ex-coop", NULL }; + char const *subdirs[] = { "sm64coopdx", "sm64ex-coop", "sm64coopdx" NULL }; char *sdlPath = NULL; for (int i = 0; NULL != subdirs[i]; i++)