armips: Update to UTF-8/c++17 armips.

This commit is contained in:
Unknown W. Brackets 2022-01-17 11:13:24 -08:00
parent 8b7ccfeca5
commit ac335ad61a
11 changed files with 63 additions and 29 deletions

View file

@ -482,7 +482,7 @@ void WebSocketDisasmState::Assemble(DebuggerRequest &req) {
return;
if (!MIPSAsm::MipsAssembleOpcode(code.c_str(), currentDebugMIPS, address))
return req.Fail(StringFromFormat("Could not assemble: %s", ConvertWStringToUTF8(MIPSAsm::GetAssembleError()).c_str()));
return req.Fail(StringFromFormat("Could not assemble: %s", MIPSAsm::GetAssembleError().c_str()));
JsonWriter &json = req.Respond();
Reporting::NotifyDebugger();