From f9b56bc3545abf6c00946fde66eea7fd5b974238 Mon Sep 17 00:00:00 2001 From: Akash Date: Thu, 26 May 2016 20:39:33 +0530 Subject: [PATCH] EE-SYSCALL: Move messages back to dev/verbose level Not needed anymore as we get another message from Counters for each change in video mode. (refer previous commit) --- pcsx2/R5900OpcodeImpl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pcsx2/R5900OpcodeImpl.cpp b/pcsx2/R5900OpcodeImpl.cpp index 7a9bfd768b..781a61c8b9 100644 --- a/pcsx2/R5900OpcodeImpl.cpp +++ b/pcsx2/R5900OpcodeImpl.cpp @@ -921,9 +921,9 @@ void SYSCALL() case 0x72: mode = "DVD NTSC 640x448 @ ??.???"; break; case 0x73: mode = "DVD PAL 720x480 @ ??.???"; break; - default: Console.Error("Mode %x is not supported. Report me upstream", cpuRegs.GPR.n.a1.UC[0]); + default: DevCon.Error("Mode %x is not supported. Report me upstream", cpuRegs.GPR.n.a1.UC[0]); } - Console.Warning("Set GS CRTC configuration. Interlace %s. Field Type %s. Mode %s", inter, field, mode.c_str()); + DevCon.Warning("Set GS CRTC configuration. Interlace %s. Field Type %s. Mode %s", inter, field, mode.c_str()); } break;