SetConfigValue function should return true.

This commit is contained in:
Mr_Goldberg 2022-05-27 13:03:12 -04:00
parent 994207770b
commit d2ef266f81
No known key found for this signature in database
GPG Key ID: 8597D87419DEF278

View File

@ -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;
}