diff --git a/src/Ryujinx.Graphics.Metal/MetalRenderer.cs b/src/Ryujinx.Graphics.Metal/MetalRenderer.cs index f5a1f8e97..f9ed0423b 100644 --- a/src/Ryujinx.Graphics.Metal/MetalRenderer.cs +++ b/src/Ryujinx.Graphics.Metal/MetalRenderer.cs @@ -220,11 +220,6 @@ namespace Ryujinx.Graphics.Metal { var span = new Span(src.Contents.ToPointer(), data.Length); data.CopyTo(span); - src.DidModifyRange(new NSRange - { - location = 0, - length = (ulong)data.Length - }); MTLBuffer dst = new(Unsafe.As(ref buffer)); blitEncoder.CopyFromBuffer(src, 0, dst, (ulong)offset, (ulong)data.Length);