From d2ef266f8102512d1f548e4816db303dad4c0c29 Mon Sep 17 00:00:00 2001 From: Mr_Goldberg Date: Fri, 27 May 2022 13:03:12 -0400 Subject: [PATCH] SetConfigValue function should return true. --- dll/steam_networking_utils.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dll/steam_networking_utils.h b/dll/steam_networking_utils.h index 43679ca..0e5388e 100644 --- a/dll/steam_networking_utils.h +++ b/dll/steam_networking_utils.h @@ -358,8 +358,8 @@ bool SetConnectionConfigValueString( HSteamNetConnection hConn, ESteamNetworking bool SetConfigValue( ESteamNetworkingConfigValue eValue, ESteamNetworkingConfigScope eScopeType, intptr_t scopeObj, ESteamNetworkingConfigDataType eDataType, const void *pArg ) { - PRINT_DEBUG("Steam_Networking_Utils::SetConfigValue\n"); - return false; + PRINT_DEBUG("Steam_Networking_Utils::SetConfigValue %i %i %p %i %p\n", eValue, eScopeType, scopeObj, eDataType, pArg); + return true; }