mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Limit file browsing in app store builds
This commit is contained in:
parent
6270d24c70
commit
640eb1f799
1 changed files with 4 additions and 0 deletions
|
@ -354,7 +354,11 @@ bool System_GetPropertyBool(SystemProperty prop) {
|
|||
case SYSPROP_CAN_JIT:
|
||||
return g_jitAvailable;
|
||||
case SYSPROP_LIMITED_FILE_BROWSING:
|
||||
#if PPSSPP_PLATFORM(IOS_APP_STORE)
|
||||
return true;
|
||||
#else
|
||||
return false; // But will return true in app store builds.
|
||||
#endif
|
||||
#ifndef HTTPS_NOT_AVAILABLE
|
||||
case SYSPROP_SUPPORTS_HTTPS:
|
||||
return true;
|
||||
|
|
Loading…
Add table
Reference in a new issue