mirror of
https://gitlab.com/Mr_Goldberg/goldberg_emulator.git
synced 2024-11-09 22:28:38 +01:00
Update steam_overlay.cpp
This commit is contained in:
parent
4c2484cdef
commit
20c03cda75
1 changed files with 8 additions and 0 deletions
|
@ -760,8 +760,16 @@ void Steam_Overlay::RunCallbacks()
|
|||
FriendGameInfo_t friend_game_info = {};
|
||||
steamFriends->GetFriendGamePlayed(friend_id, &friend_game_info);
|
||||
if (friend_game_info.m_steamIDLobby.IsValid())
|
||||
{
|
||||
// TODO: Look if thats really JoinLobby ?
|
||||
// I saw on steamdev that overlay sends a GameLobbyJoinRequested_t
|
||||
//GameLobbyJoinRequested_t data;
|
||||
//data.m_steamIDLobby.SetFromUint64(friend_info->second.lobbyId);
|
||||
//data.m_steamIDFriend.SetFromUint64(friend_id);
|
||||
//callbacks->addCBResult(data.k_iCallback, &data, sizeof(data));
|
||||
steamMatchmaking->JoinLobby(friend_game_info.m_steamIDLobby);
|
||||
}
|
||||
}
|
||||
|
||||
friend_info->second.window_state &= ~window_state_join;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue