feature: .NET 10

This commit is contained in:
KeatonTheBot 2025-11-11 17:12:24 -06:00
parent bc0c483041
commit 203ac3a175
9 changed files with 14 additions and 12 deletions

View file

@ -139,7 +139,7 @@ namespace Ryujinx.Graphics.OpenGL.Image
start = sizeAligned;
}
var outSpan = MemoryMarshal.Cast<byte, uint>(output);
var outSpan = MemoryMarshal.Cast<byte, uint>(new Span<byte>(output));
var dataSpan = MemoryMarshal.Cast<byte, uint>(data);
for (int i = start / sizeof(uint); i < dataSpan.Length; i++)
{