mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2025-12-24 00:04:34 +01:00
lsteamclient: Fix DOS path encoding
This commit is contained in:
parent
b658087a0a
commit
83b804f15e
1 changed files with 1 additions and 1 deletions
|
|
@ -45,7 +45,7 @@ uint32 steamclient_unix_path_to_dos_path(uint32 api_result, char *inout, uint32
|
|||
return 0;
|
||||
}
|
||||
|
||||
r = WideCharToMultiByte(CP_ACP, 0, converted, -1, inout, inout_bytes,
|
||||
r = WideCharToMultiByte(CP_UNIXCP, 0, converted, -1, inout, inout_bytes,
|
||||
NULL, NULL);
|
||||
|
||||
HeapFree(GetProcessHeap(), 0, converted);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue