mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-06-28 03:16:23 +02:00
FIx starting the emulation on iOS 16 and below.
This commit is contained in:
parent
46196daf39
commit
b85758ba88
9 changed files with 104 additions and 35 deletions
|
@ -1255,7 +1255,7 @@ namespace Ryujinx.Graphics.Vulkan
|
|||
|
||||
int vbSize = vertexBuffer.Buffer.Size;
|
||||
|
||||
if (Gd.Vendor == Vendor.Amd && !Gd.IsMoltenVk && vertexBuffer.Stride > 0)
|
||||
if ((Gd.Vendor == Vendor.Amd || !OperatingSystem.IsIOSVersionAtLeast(17)) && !Gd.IsMoltenVk && vertexBuffer.Stride > 0)
|
||||
{
|
||||
// AMD has a bug where if offset + stride * count is greater than
|
||||
// the size, then the last attribute will have the wrong value.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue