mirror of https://github.com/PCSX2/pcsx2.git
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.
This commit is contained in:
parent
78bf5ad88e
commit
2ed67f6d65
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue