瀏覽代碼

N3DS: Prepend PrefPath with `sdmc:`.

Pierre Wendling 3 年之前
父節點
當前提交
de5fa89b50
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/filesystem/n3ds/SDL_sysfilesystem.c

+ 1 - 1
src/filesystem/n3ds/SDL_sysfilesystem.c

@@ -68,7 +68,7 @@ SDL_FORCE_INLINE char *
 MakePrefPath(const char *app)
 MakePrefPath(const char *app)
 {
 {
     char *pref_path;
     char *pref_path;
-    if (SDL_asprintf(&pref_path, "/3ds/%s/", app) < 0) {
+    if (SDL_asprintf(&pref_path, "sdmc:/3ds/%s/", app) < 0) {
         SDL_OutOfMemory();
         SDL_OutOfMemory();
         return NULL;
         return NULL;
     }
     }