mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-20 17:51:13 +02:00
Fix build error: Replace StartsWithIgnoreCase with standard .NET equivalent
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user