mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2025-12-21 21:26:03 +01:00
lsteamclient: Move dos to unix path conversion to the unix side.
CW-Bug-Id: #22729
This commit is contained in:
parent
fd5711e93b
commit
049342a555
58 changed files with 575 additions and 567 deletions
|
|
@ -150,7 +150,9 @@ NTSTATUS ISteamUtils_SteamUtils005_CheckFileSignature( void *args )
|
|||
{
|
||||
struct ISteamUtils_SteamUtils005_CheckFileSignature_params *params = (struct ISteamUtils_SteamUtils005_CheckFileSignature_params *)args;
|
||||
struct u_ISteamUtils_SteamUtils005 *iface = (struct u_ISteamUtils_SteamUtils005 *)params->linux_side;
|
||||
params->_ret = iface->CheckFileSignature( params->szFileName );
|
||||
char *u_szFileName = steamclient_dos_to_unix_path( params->szFileName, 0 );
|
||||
params->_ret = iface->CheckFileSignature( u_szFileName );
|
||||
steamclient_free_path( u_szFileName );
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue