Fix exception throw message for unimpl texture formats (#398)
This commit is contained in:
parent
e72fd3f7a7
commit
b549daed03
3 changed files with 3 additions and 3 deletions
|
@ -125,7 +125,7 @@ namespace Ryujinx.Graphics.Gal
|
|||
break;
|
||||
}
|
||||
|
||||
throw new NotImplementedException("0x" + Format.ToString("x2") + " " + Type.ToString());
|
||||
throw new NotImplementedException("0x" + ((int)Format).ToString("x2") + " " + Type.ToString());
|
||||
}
|
||||
|
||||
public static GalImageFormat ConvertFrameBuffer(GalFrameBufferFormat Format)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue