diff --git a/Source/Core/Core/HLE/HLE_OS.cpp b/Source/Core/Core/HLE/HLE_OS.cpp index da8e04c6c8..49da2e92e2 100644 --- a/Source/Core/Core/HLE/HLE_OS.cpp +++ b/Source/Core/Core/HLE/HLE_OS.cpp @@ -43,7 +43,7 @@ void HLE_GeneralDebugPrint() NPC = LR; - NOTICE_LOG(OSREPORT, "%08x->%08x| %s", LR, PC, report_message.c_str()); + NOTICE_LOG(OSREPORT, "%08x->%08x| %s", LR, PC, SHIFTJISToUTF8(report_message).c_str()); } // __write_console is slightly abnormal @@ -53,7 +53,7 @@ void HLE_write_console() NPC = LR; - NOTICE_LOG(OSREPORT, "%08x->%08x| %s", LR, PC, report_message.c_str()); + NOTICE_LOG(OSREPORT, "%08x->%08x| %s", LR, PC, SHIFTJISToUTF8(report_message).c_str()); } std::string GetStringVA(u32 strReg)