Change CompilerWarning to DisplayError in Cop0_MF

In RSP interpreter, it is DisplayError and I feel like it's an important
message, so it should be DisplayError in RSP recompiler as well, in my
opinion.
This commit is contained in:
LegendOfDragoon 2015-04-19 21:20:10 -07:00
parent 603df8e167
commit 882b0f5841
1 changed files with 1 additions and 1 deletions

View File

@ -1608,7 +1608,7 @@ void Compile_Cop0_MF ( void ) {
break;
default:
CompilerWarning("have not implemented RSP MF CP0 reg %s (%d)",COP0_Name(RSPOpC.rd),RSPOpC.rd);
DisplayError("have not implemented RSP MF CP0 reg %s (%d)",COP0_Name(RSPOpC.rd),RSPOpC.rd);
}
#endif
}