Limit file browsing in app store builds

This commit is contained in:
Henrik Rydgård 2024-05-05 14:13:10 +02:00
parent 6270d24c70
commit 640eb1f799

View File

@ -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;