mirror of
https://github.com/GreemDev/Ryujinx
synced 2025-01-05 02:27:21 +01:00
remove LowPowerPPTC from HLEConfiguration
it's unused and doesn't need to be here, so it's getting reverted
This commit is contained in:
parent
b898fbd906
commit
91ef005a3c
4 changed files with 0 additions and 12 deletions
|
@ -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;
|
||||
|
|
|
@ -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; }
|
||||
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue