mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-29 09:57:09 +02:00
Fix exception throw message for unimpl texture formats (#398)
This commit is contained in:
parent
78575c1cea
commit
c7cd70c010
3 changed files with 3 additions and 3 deletions
|
@ -178,7 +178,7 @@ namespace Ryujinx.HLE.Gpu.Texture
|
|||
}
|
||||
}
|
||||
|
||||
throw new NotImplementedException("0x" + Image.Format.ToString("x2"));
|
||||
throw new NotImplementedException(Image.Format.ToString());
|
||||
}
|
||||
|
||||
public static int CompressedTextureSize(int TextureWidth, int TextureHeight, int BlockWidth, int BlockHeight, int Bpb)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue