mirror of
https://github.com/LizardByte/Sunshine.git
synced 2025-01-30 21:32:52 +00:00
Use UTF-8 conversion for log output and C standard library functions
This commit is contained in:
parent
4186d83027
commit
cadd3da9a7
@ -473,6 +473,9 @@ main(int argc, char *argv[]) {
|
||||
task_pool_util::TaskPool::task_id_t force_shutdown = nullptr;
|
||||
|
||||
#ifdef _WIN32
|
||||
// Switch default C standard library locale to UTF-8 on Windows 10 1803+
|
||||
setlocale(LC_ALL, ".UTF-8");
|
||||
|
||||
// Wait as long as possible to terminate Sunshine.exe during logoff/shutdown
|
||||
SetProcessShutdownParameters(0x100, SHUTDOWN_NORETRY);
|
||||
|
||||
@ -516,6 +519,9 @@ main(int argc, char *argv[]) {
|
||||
window_thread.detach();
|
||||
#endif
|
||||
|
||||
// Use UTF-8 conversion for the default C++ locale (used by boost::log)
|
||||
std::locale::global(std::locale(std::locale(), new std::codecvt_utf8<wchar_t>));
|
||||
|
||||
mail::man = std::make_shared<safe::mail_raw_t>();
|
||||
|
||||
if (config::parse(argc, argv)) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user