From 9b300b4d59a4aeb5f9271c0f3201a5fa54147de4 Mon Sep 17 00:00:00 2001 From: Piplup Date: Thu, 23 May 2024 18:58:19 +0100 Subject: [PATCH] Applied Suggestions --- src/Ryujinx.Graphics.Vulkan/PipelineState.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ryujinx.Graphics.Vulkan/PipelineState.cs b/src/Ryujinx.Graphics.Vulkan/PipelineState.cs index 0f7765316b..c38748936b 100644 --- a/src/Ryujinx.Graphics.Vulkan/PipelineState.cs +++ b/src/Ryujinx.Graphics.Vulkan/PipelineState.cs @@ -560,7 +560,7 @@ namespace Ryujinx.Graphics.Vulkan } } - // vendors other than nvidia have a bug where it enables logical operations even for float formats, + // Vendors other than NVIDIA have a bug where it enables logical operations even for float formats, // so we need to force disable them here. bool logicOpEnable = LogicOpEnable && (gd.Vendor == Vendor.Nvidia || Internal.LogicOpsAllowed);