Android fixes and features

* Jit cache eviction (fixes out of memory errors in some games)

* Low power PPTC

* Fix 'unknown' games displayed when using game folder with subfolders

* Turn off NCE and PPTC by default
This commit is contained in:
KeatonTheBot 2025-05-31 03:00:29 -05:00
parent 3af88ad2e6
commit fda90239bc
58 changed files with 914 additions and 190 deletions

View file

@ -16,7 +16,7 @@ namespace Ryujinx.UI.Common.Configuration
/// <summary>
/// The current version of the file format
/// </summary>
public const int CurrentVersion = 58;
public const int CurrentVersion = 59;
/// <summary>
/// Version of the configuration file format
@ -240,6 +240,11 @@ namespace Ryujinx.UI.Common.Configuration
/// </summary>
public bool EnableLowPowerPtc { get; set; }
/// <summary>
/// Enables or disables JIT cache eviction to avoid out of memory errors in some games
/// </summary>
public bool EnableJitCacheEviction { get; set; }
/// <summary>
/// Enables or disables guest Internet access
/// </summary>