diff options
Diffstat (limited to 'Ryujinx.Graphics.Vic/Image/SurfaceReader.cs')
-rw-r--r-- | Ryujinx.Graphics.Vic/Image/SurfaceReader.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Graphics.Vic/Image/SurfaceReader.cs b/Ryujinx.Graphics.Vic/Image/SurfaceReader.cs index ab591cd0..aa880916 100644 --- a/Ryujinx.Graphics.Vic/Image/SurfaceReader.cs +++ b/Ryujinx.Graphics.Vic/Image/SurfaceReader.cs @@ -19,7 +19,7 @@ namespace Ryujinx.Graphics.Vic.Image case PixelFormat.Y8___V8U8_N420: return ReadNv12(rm, ref config, ref offsets); } - Logger.PrintError(LogClass.Vic, $"Unsupported pixel format \"{config.SlotPixelFormat}\"."); + Logger.Error?.Print(LogClass.Vic, $"Unsupported pixel format \"{config.SlotPixelFormat}\"."); int lw = config.SlotLumaWidth + 1; int lh = config.SlotLumaHeight + 1; |