Rsp: Fix capitalization in rsp_UnknownOpcode

This commit is contained in:
zilmar 2023-07-06 20:51:17 +09:30
parent 07cf94bde3
commit fbb388fa0f
1 changed files with 1 additions and 1 deletions

View File

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