From ebeb5320991c03fbb3fb295f57478b1148370edf Mon Sep 17 00:00:00 2001 From: KeatonTheBot Date: Thu, 2 Oct 2025 15:16:45 -0500 Subject: [PATCH] Fix build error: Replace StartsWithIgnoreCase with standard .NET equivalent --- src/Ryujinx.Graphics.Vulkan/VulkanRenderer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ryujinx.Graphics.Vulkan/VulkanRenderer.cs b/src/Ryujinx.Graphics.Vulkan/VulkanRenderer.cs index 1fc543454..0accef3fb 100644 --- a/src/Ryujinx.Graphics.Vulkan/VulkanRenderer.cs +++ b/src/Ryujinx.Graphics.Vulkan/VulkanRenderer.cs @@ -391,7 +391,7 @@ namespace Ryujinx.Graphics.Vulkan } else if (Vendor == Vendor.Intel) { - IsIntelArc = GpuRenderer.StartsWithIgnoreCase("Intel(R) Arc(TM)"); + IsIntelArc = GpuRenderer.StartsWith("Intel(R) Arc(TM)", StringComparison.OrdinalIgnoreCase); } IsQualcommProprietary = hasDriverProperties && driverProperties.DriverID == DriverId.QualcommProprietary;