From 882b0f584188cce003b007b411b82582ddd94dc1 Mon Sep 17 00:00:00 2001 From: LegendOfDragoon Date: Sun, 19 Apr 2015 21:20:10 -0700 Subject: [PATCH] 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. --- Source/RSP/Recompiler Ops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/RSP/Recompiler Ops.c b/Source/RSP/Recompiler Ops.c index 2f52ee040..3c2f7070b 100644 --- a/Source/RSP/Recompiler Ops.c +++ b/Source/RSP/Recompiler Ops.c @@ -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 }