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:
Akash 2016-07-01 17:26:32 +05:30
parent 78bf5ad88e
commit 2ed67f6d65
1 changed files with 2 additions and 2 deletions

View File

@ -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;