mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2026-04-08 20:08:42 +00:00
Fix exception throw message for unimpl texture formats (#398)
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user