From 2174ef04785ef1e4925b46cd183b3cc4534b2ca7 Mon Sep 17 00:00:00 2001 From: MysterD Date: Fri, 4 Sep 2020 22:17:15 -0700 Subject: [PATCH] Change default save directory to sm64ex-coop --- src/pc/platform.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pc/platform.c b/src/pc/platform.c index e68370a44..760985edb 100644 --- a/src/pc/platform.c +++ b/src/pc/platform.c @@ -118,7 +118,7 @@ const char *sys_user_path(void) { static char path[SYS_MAX_PATH] = { 0 }; // get the new pref path from SDL - char *sdlpath = SDL_GetPrefPath("", "sm64ex"); + char *sdlpath = SDL_GetPrefPath("", "sm64ex-coop"); if (sdlpath) { const unsigned int len = strlen(sdlpath); strncpy(path, sdlpath, sizeof(path));