Skip to content

Commit

Permalink
Linux: Look for assets directory in /usr/share/ppsspp/.
Browse files Browse the repository at this point in the history
  • Loading branch information
barthalion committed Aug 5, 2014
1 parent 404766c commit 39d03cf
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions UI/NativeApp.cpp
Expand Up @@ -275,6 +275,7 @@ void NativeInit(int argc, const char *argv[],
#elif defined(__APPLE__) || (defined(__linux__) && !defined(ANDROID))
VFSRegister("", new DirectoryAssetReader((File::GetExeDirectory() + "assets/").c_str()));
VFSRegister("", new DirectoryAssetReader((File::GetExeDirectory()).c_str()));
VFSRegister("", new DirectoryAssetReader("/usr/share/ppsspp/assets/"));
#else
VFSRegister("", new DirectoryAssetReader("assets/"));
#endif
Expand Down

0 comments on commit 39d03cf

Please sign in to comment.