Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Disable the Cache full ISO in RAM feature on 32-bit builds
  • Loading branch information
hrydgard committed Jun 13, 2025
commit b75541b23f5086d6bd10f2ef1763b55249c176bd
7 changes: 3 additions & 4 deletions SDL/SDLMain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -765,12 +765,11 @@ case SYSPROP_HAS_FILE_BROWSER:
case SYSPROP_CAN_READ_BATTERY_PERCENTAGE:
return true;
case SYSPROP_ENOUGH_RAM_FOR_FULL_ISO:
#if defined(MOBILE_DEVICE)
return false;
#else
#if PPSSPP_ARCH(64BIT) && !defined(MOBILE_DEVICE)
return true;
#else
return false;
#endif

// hack for testing - do not commit
case SYSPROP_USE_IAP:
return false;
Expand Down
4 changes: 4 additions & 0 deletions Windows/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,11 @@ bool System_GetPropertyBool(SystemProperty prop) {
case SYSPROP_CAN_READ_BATTERY_PERCENTAGE:
return true;
case SYSPROP_ENOUGH_RAM_FOR_FULL_ISO:
#if PPSSPP_ARCH(64BIT)
return true;
#else
return false;
#endif
default:
return false;
}
Expand Down
Loading