mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-22 21:09:52 +00:00
Limit file browsing in app store builds
This commit is contained in:
parent
6270d24c70
commit
640eb1f799
@ -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…
Reference in New Issue
Block a user