mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Qt apps on non-mobile, non-Windows platforms now see /usr/share/ppsspp/assets
This commit is contained in:
parent
9fa13c7c9d
commit
36a8f71a55
1 changed files with 2 additions and 1 deletions
|
@ -320,7 +320,8 @@ void NativeInit(int argc, const char *argv[], const char *savegame_dir, const ch
|
|||
#elif defined(IOS)
|
||||
// Packed assets are included in app
|
||||
VFSRegister("", new DirectoryAssetReader(external_dir));
|
||||
#elif !defined(MOBILE_DEVICE) && !defined(_WIN32)
|
||||
#endif
|
||||
#if !defined(MOBILE_DEVICE) && !defined(_WIN32)
|
||||
VFSRegister("", new DirectoryAssetReader((File::GetExeDirectory() + "assets/").c_str()));
|
||||
VFSRegister("", new DirectoryAssetReader((File::GetExeDirectory()).c_str()));
|
||||
VFSRegister("", new DirectoryAssetReader("/usr/share/ppsspp/assets/"));
|
||||
|
|
Loading…
Add table
Reference in a new issue