misc: Replace IntPtr/UIntPtr with nint/nuint

This commit is contained in:
KeatonTheBot
2026-05-16 18:42:48 -05:00
parent f2ac50360e
commit 18c6ec439b
+1 -1
View File
@@ -148,7 +148,7 @@ namespace Ryujinx.Headless
fixed (byte* iconPtr = iconBytes)
{
SDL_IOStream* rwOpsStruct = SDL_IOFromConstMem((nint)iconPtr, (UIntPtr)iconBytes.Length);
SDL_IOStream* rwOpsStruct = SDL_IOFromConstMem((nint)iconPtr, (uint)iconBytes.Length);
SDL_Surface* iconHandle = SDL_LoadBMP_IO(rwOpsStruct, true);
SDL_SetWindowIcon(WindowHandle, iconHandle);