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