mirror of
https://gitlab.com/Mr_Goldberg/goldberg_emulator.git
synced 2025-12-06 04:04:53 +01:00
Fixes to matchmaking and friends.
This commit is contained in:
parent
e100c89160
commit
ba25559920
2 changed files with 10 additions and 9 deletions
|
|
@ -156,12 +156,9 @@ Steam_Friends(Settings* settings, Networking* network, SteamCallResults* callbac
|
|||
|
||||
static bool ok_friend_flags(int iFriendFlags)
|
||||
{
|
||||
if (iFriendFlags & k_EFriendFlagBlocked) return false;
|
||||
if (iFriendFlags & k_EFriendFlagIgnored) return false;
|
||||
if (iFriendFlags & k_EFriendFlagIgnoredFriend) return false;
|
||||
if (iFriendFlags & k_EFriendFlagFriendshipRequested) return false;
|
||||
if (iFriendFlags & k_EFriendFlagRequestingFriendship) return false;
|
||||
return true;
|
||||
if (iFriendFlags & k_EFriendFlagImmediate) return true;
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
// returns the local players name - guaranteed to not be NULL.
|
||||
|
|
@ -218,11 +215,11 @@ EPersonaState GetPersonaState()
|
|||
// then GetFriendByIndex() can then be used to return the id's of each of those users
|
||||
int GetFriendCount( int iFriendFlags )
|
||||
{
|
||||
PRINT_DEBUG("Steam_Friends::GetFriendCount\n");
|
||||
PRINT_DEBUG("Steam_Friends::GetFriendCount %i\n", iFriendFlags);
|
||||
std::lock_guard<std::recursive_mutex> lock(global_mutex);
|
||||
int count = 0;
|
||||
if (ok_friend_flags(iFriendFlags)) count = friends.size();
|
||||
|
||||
PRINT_DEBUG("count %i\n", count);
|
||||
return count;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue