ports/emulators/ppsspp/patches/patch-UI_NativeApp_cpp

17 lines
811 B
Text
Raw Normal View History

2023-08-16 22:26:55 +00:00
Index: UI/NativeApp.cpp
--- UI/NativeApp.cpp.orig
+++ UI/NativeApp.cpp
2023-09-17 04:05:06 +00:00
@@ -416,12 +416,7 @@ void NativeInit(int argc, const char *argv[], const ch
2023-08-16 22:26:55 +00:00
g_VFS.Register("", new DirectoryReader(Path(ASSETS_DIR)));
#endif
#if !defined(MOBILE_DEVICE) && !defined(_WIN32) && !PPSSPP_PLATFORM(SWITCH)
- g_VFS.Register("", new DirectoryReader(File::GetExeDirectory() / "assets"));
- g_VFS.Register("", new DirectoryReader(File::GetExeDirectory()));
2023-09-17 04:05:06 +00:00
g_VFS.Register("", new DirectoryReader(Path("/usr/local/share/ppsspp/assets")));
2023-08-16 22:26:55 +00:00
- g_VFS.Register("", new DirectoryReader(Path("/usr/local/share/games/ppsspp/assets")));
- g_VFS.Register("", new DirectoryReader(Path("/usr/share/ppsspp/assets")));
- g_VFS.Register("", new DirectoryReader(Path("/usr/share/games/ppsspp/assets")));
#endif
#if PPSSPP_PLATFORM(SWITCH)