Fix build error: Replace StartsWithIgnoreCase with standard .NET equivalent

This commit is contained in:
KeatonTheBot
2025-10-02 15:18:35 -05:00
parent c501fe264b
commit ebeb532099
@@ -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;