2
0
mirror of https://github.com/ValveSoftware/Proton synced 2025-08-31 14:45:23 +00:00

lsteamclient: Use the PE side request to cache GetServerDetails results.

This commit is contained in:
Rémi Bernon
2025-01-16 00:20:25 +01:00
committed by Arkadiusz Hiler
parent 76b98269dd
commit 11083b94b5
5 changed files with 35 additions and 15 deletions

View File

@@ -239,7 +239,7 @@ MANUAL_METHODS = {
"ISteamMatchmakingServers_CancelQuery": lambda ver, abi: abi == 'u' and ver >= 2,
"ISteamMatchmakingServers_GetServerCount": lambda ver, abi: abi == 'u' and ver >= 2,
"ISteamMatchmakingServers_GetServerDetails": lambda ver, abi: abi == 'u' and ver >= 2,
"ISteamMatchmakingServers_GetServerDetails": lambda ver, abi: ver >= 2,
"ISteamMatchmakingServers_IsRefreshing": lambda ver, abi: abi == 'u' and ver >= 2,
"ISteamMatchmakingServers_PingServer": lambda ver, abi: abi == 'u',
"ISteamMatchmakingServers_PlayerDetails": lambda ver, abi: abi == 'u',