From 2ed67f6d65ed258b5395730045a9b6725cf6626c Mon Sep 17 00:00:00 2001 From: Akash Date: Fri, 1 Jul 2016 17:26:32 +0530 Subject: [PATCH] EE-SYSCALL: Move messages back to dev/verbose level These messages are not needed anymore as we'll get the video mode information from the console messages on Counters. --- pcsx2/R5900OpcodeImpl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pcsx2/R5900OpcodeImpl.cpp b/pcsx2/R5900OpcodeImpl.cpp index af89d2358a..afb11c92e6 100644 --- a/pcsx2/R5900OpcodeImpl.cpp +++ b/pcsx2/R5900OpcodeImpl.cpp @@ -927,10 +927,10 @@ void SYSCALL() case 0x73: mode = "DVD PAL 720x480 @ ??.???"; gsSetVideoMode(GS_VideoMode::BIOS); break; default: - Console.Error("Mode %x is not supported. Report me upstream", cpuRegs.GPR.n.a1.UC[0]); + DevCon.Error("Mode %x is not supported. Report me upstream", cpuRegs.GPR.n.a1.UC[0]); gsSetVideoMode(GS_VideoMode::Unknown); } - 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;