mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2025-12-25 08:44:32 +01:00
lsteamclient: Convert URL in ISteamFriends::ActivateGameOverlayToWebPage().
CW-Bug-Id: #24247
This commit is contained in:
parent
ef6f55844d
commit
c506aff695
13 changed files with 39 additions and 12 deletions
|
|
@ -185,7 +185,9 @@ NTSTATUS ISteamFriends_SteamFriends006_ActivateGameOverlayToWebPage( void *args
|
|||
{
|
||||
struct ISteamFriends_SteamFriends006_ActivateGameOverlayToWebPage_params *params = (struct ISteamFriends_SteamFriends006_ActivateGameOverlayToWebPage_params *)args;
|
||||
struct u_ISteamFriends_SteamFriends006 *iface = (struct u_ISteamFriends_SteamFriends006 *)params->linux_side;
|
||||
iface->ActivateGameOverlayToWebPage( params->pchURL );
|
||||
char *u_pchURL = steamclient_dos_to_unix_path( params->pchURL, 1 );
|
||||
iface->ActivateGameOverlayToWebPage( u_pchURL );
|
||||
steamclient_free_path( u_pchURL );
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue