mirror of
https://github.com/yuzu-emu/liftinstall.git
synced 2024-11-22 07:35:37 +01:00
Fix generating shortcuts for non-English usernames on Windows
This commit is contained in:
parent
c84d5daf3a
commit
8db5358967
@ -49,7 +49,7 @@ extern "C" int saveShortcut(
|
||||
}
|
||||
|
||||
//Append the shortcut name to the folder
|
||||
MultiByteToWideChar(CP_ACP,0,shortcutPath,-1,wName,MAX_PATH);
|
||||
MultiByteToWideChar(CP_UTF8,0,shortcutPath,-1,wName,MAX_PATH);
|
||||
|
||||
// Load the file if it exists, to get the values for anything
|
||||
// that we do not set. Ignore errors, such as if it does not exist.
|
||||
|
Loading…
Reference in New Issue
Block a user