mirror of https://github.com/PCSX2/pcsx2.git
MicroVU: use DevCon.Warning for E-bit delay slot.
The following E-bit delay slot warning initially used a console error message which has a sort of bright red which would cause users to provide a lot of attention towards to it, whereas it isn't much to be bothered since it doesn't cause any issues on the game according to refraction it was already dealt with on the code. So, use a proper warning indicator instead of a error log message.
This commit is contained in:
parent
1039df5077
commit
8ebe03a89d
|
@ -207,7 +207,7 @@ __ri void branchWarning(mV) {
|
|||
incPC(-2);
|
||||
if (mVUup.eBit && mVUbranch) {
|
||||
incPC(2);
|
||||
Console.Error("microVU%d Warning: Branch in E-bit delay slot! [%04x]", mVU.index, xPC);
|
||||
DevCon.Warning("microVU%d Warning: Branch in E-bit delay slot! [%04x]", mVU.index, xPC);
|
||||
mVUlow.isNOP = true;
|
||||
}
|
||||
else incPC(2);
|
||||
|
|
Loading…
Reference in New Issue