aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Ava/UI/ViewModels/SettingsViewModel.cs
diff options
context:
space:
mode:
authorjcm <john.moody@coloradocollege.edu>2023-10-04 12:15:37 -0500
committerGitHub <noreply@github.com>2023-10-04 19:15:37 +0200
commitf61b7818c3330fa0cda3fcde5b1de51b1477bfa0 (patch)
tree561f94aa0c1beac0b92bdef9ce394780e2c09233 /src/Ryujinx.Ava/UI/ViewModels/SettingsViewModel.cs
parenta2a97e1b11d38b51231e05a1da5202481cdf4df8 (diff)
Avalonia: Add macOS check for Color Space Passthrough (#5754)
* add macOS check for color passthrough * use existing IsMacOS property --------- Co-authored-by: jcm <butt@butts.com>
Diffstat (limited to 'src/Ryujinx.Ava/UI/ViewModels/SettingsViewModel.cs')
-rw-r--r--src/Ryujinx.Ava/UI/ViewModels/SettingsViewModel.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Ryujinx.Ava/UI/ViewModels/SettingsViewModel.cs b/src/Ryujinx.Ava/UI/ViewModels/SettingsViewModel.cs
index 9c61becd..604e3406 100644
--- a/src/Ryujinx.Ava/UI/ViewModels/SettingsViewModel.cs
+++ b/src/Ryujinx.Ava/UI/ViewModels/SettingsViewModel.cs
@@ -147,6 +147,7 @@ namespace Ryujinx.Ava.UI.ViewModels
public bool EnableTextureRecompression { get; set; }
public bool EnableMacroHLE { get; set; }
public bool EnableColorSpacePassthrough { get; set; }
+ public bool ColorSpacePassthroughAvailable => IsMacOS;
public bool EnableFileLog { get; set; }
public bool EnableStub { get; set; }
public bool EnableInfo { get; set; }