1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-08-24 16:36:26 -05:00

Fix exception throw message for unimpl texture formats (#398)

This commit is contained in:
gdkchan
2018-09-01 18:51:51 -03:00
committed by GitHub
parent e72fd3f7a7
commit b549daed03
3 changed files with 3 additions and 3 deletions

View File

@@ -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)