From fbb388fa0f2d818ce5293e866504a7c5fbdb7078 Mon Sep 17 00:00:00 2001 From: zilmar Date: Thu, 6 Jul 2023 20:51:17 +0930 Subject: [PATCH] Rsp: Fix capitalization in rsp_UnknownOpcode --- Source/Project64-rsp/Interpreter Ops.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Project64-rsp/Interpreter Ops.cpp b/Source/Project64-rsp/Interpreter Ops.cpp index fab571f3a..bd5c1e871 100644 --- a/Source/Project64-rsp/Interpreter Ops.cpp +++ b/Source/Project64-rsp/Interpreter Ops.cpp @@ -2249,7 +2249,7 @@ void rsp_UnknownOpcode(void) } else { - sprintf(Message, "Unhandled Opcode\n%s\n\nStopping emulation.\n\nWOuld you like to open the debugger?", + sprintf(Message, "Unhandled Opcode\n%s\n\nStopping emulation.\n\nWould you like to open the debugger?", RSPInstruction(*PrgCount, RSPOpC.Value).NameAndParam().c_str()); response = MessageBoxA(NULL, Message, "Error", MB_YESNO | MB_ICONERROR); if (response == IDYES)