remove LowPowerPPTC from HLEConfiguration

it's unused and doesn't need to be here, so it's getting reverted
This commit is contained in:
LotP1 2024-11-21 16:07:28 +01:00 committed by LotP1
parent b898fbd906
commit 91ef005a3c
4 changed files with 0 additions and 12 deletions

View file

@ -98,11 +98,6 @@ namespace Ryujinx.HLE
/// </summary>
internal readonly bool EnablePtc;
/// <summary>
/// Control if the Profiled Translation Cache (PTC) should run in low power mode.
/// </summary>
internal readonly bool LowPowerPtc;
/// <summary>
/// Control if the guest application should be told that there is a Internet connection available.
/// </summary>
@ -203,7 +198,6 @@ namespace Ryujinx.HLE
bool enableVsync,
bool enableDockedMode,
bool enablePtc,
bool lowPowerPtc,
bool enableInternetAccess,
IntegrityCheckLevel fsIntegrityCheckLevel,
int fsGlobalAccessLogMode,
@ -234,7 +228,6 @@ namespace Ryujinx.HLE
EnableVsync = enableVsync;
EnableDockedMode = enableDockedMode;
EnablePtc = enablePtc;
LowPowerPtc = lowPowerPtc;
EnableInternetAccess = enableInternetAccess;
FsIntegrityCheckLevel = fsIntegrityCheckLevel;
FsGlobalAccessLogMode = fsGlobalAccessLogMode;

View file

@ -106,9 +106,6 @@ namespace Ryujinx.Headless.SDL2
[Option("disable-ptc", Required = false, HelpText = "Disables profiled persistent translation cache.")]
public bool DisablePTC { get; set; }
[Option("low-power-ptc", Required = false, HelpText = "Increases PTC performance for low power systems.")]
public bool LowPowerPTC { get; set; }
[Option("enable-internet-connection", Required = false, Default = false, HelpText = "Enables guest Internet connection.")]
public bool EnableInternetAccess { get; set; }

View file

@ -566,7 +566,6 @@ namespace Ryujinx.Headless.SDL2
!options.DisableVSync,
!options.DisableDockedMode,
!options.DisablePTC,
options.LowPowerPTC,
options.EnableInternetAccess,
!options.DisableFsIntegrityChecks ? IntegrityCheckLevel.ErrorOnInvalid : IntegrityCheckLevel.None,
options.FsGlobalAccessLogMode,

View file

@ -871,7 +871,6 @@ namespace Ryujinx.Ava
ConfigurationState.Instance.Graphics.EnableVsync,
ConfigurationState.Instance.System.EnableDockedMode,
ConfigurationState.Instance.System.EnablePtc,
ConfigurationState.Instance.System.EnableLowPowerPtc,
ConfigurationState.Instance.System.EnableInternetAccess,
ConfigurationState.Instance.System.EnableFsIntegrityChecks ? IntegrityCheckLevel.ErrorOnInvalid : IntegrityCheckLevel.None,
ConfigurationState.Instance.System.FsGlobalAccessLogMode,