mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-09-04 19:55:27 +02:00
Logging bug fix and some warning fixes.
This commit is contained in:
@@ -25,6 +25,7 @@ void OutputDebugStringUTF8(const char *p) {
|
||||
int len = std::min(2047, (int)strlen(p));
|
||||
int size = (int)MultiByteToWideChar(CP_UTF8, 0, p, len, NULL, 0);
|
||||
MultiByteToWideChar(CP_UTF8, 0, p, len, temp, size);
|
||||
temp[size] = 0;
|
||||
OutputDebugString(temp);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user