diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2018-09-01 18:51:51 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-09-01 18:51:51 -0300 |
| commit | b549daed034225a0b305dc40497d73983cc3827e (patch) | |
| tree | 8bb77fa94a1ad1f8df56c82b9eac925da1aa90d7 /Ryujinx.HLE/Gpu/Texture/TextureHelper.cs | |
| parent | e72fd3f7a7cf770283f4cbd4b082677a83daf515 (diff) | |
Fix exception throw message for unimpl texture formats (#398)
Diffstat (limited to 'Ryujinx.HLE/Gpu/Texture/TextureHelper.cs')
| -rw-r--r-- | Ryujinx.HLE/Gpu/Texture/TextureHelper.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.HLE/Gpu/Texture/TextureHelper.cs b/Ryujinx.HLE/Gpu/Texture/TextureHelper.cs index 98da852e..2683174d 100644 --- a/Ryujinx.HLE/Gpu/Texture/TextureHelper.cs +++ b/Ryujinx.HLE/Gpu/Texture/TextureHelper.cs @@ -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) |
