mirror of
https://github.com/yuzu-emu/yuzu-android
synced 2025-07-04 02:50:46 -07:00
debugger: console: Set console output codepage to UTF-8
This allows the console to display multi-byte encoded characters.
This commit is contained in:
@ -30,6 +30,7 @@ void ToggleConsole() {
|
||||
freopen_s(&temp, "CONIN$", "r", stdin);
|
||||
freopen_s(&temp, "CONOUT$", "w", stdout);
|
||||
freopen_s(&temp, "CONOUT$", "w", stderr);
|
||||
SetConsoleOutputCP(65001);
|
||||
SetColorConsoleBackendEnabled(true);
|
||||
}
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user