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:
Akash 2015-08-21 14:25:14 +05:30
parent 1039df5077
commit 8ebe03a89d
1 changed files with 1 additions and 1 deletions

View File

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