Browse Source

Fix filesystem

Ivan Epifanov 4 years ago
parent
commit
194c813893
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/filesystem/vita/SDL_sysfilesystem.c

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

@@ -42,7 +42,7 @@
 char *
 char *
 SDL_GetBasePath(void)
 SDL_GetBasePath(void)
 {
 {
-    const char *basepath = "app:/";
+    const char *basepath = "app0:/";
     char *retval = SDL_strdup(basepath);
     char *retval = SDL_strdup(basepath);
     return retval;
     return retval;
 }
 }