From bf60680d871b2cc5ac8cdee49119d2e67fa3a1ad Mon Sep 17 00:00:00 2001 From: Garry Newman Date: Wed, 26 Feb 2020 12:41:45 +0000 Subject: [PATCH] Renamed SteamNetworkingUtils.GetConfigInt to SetConfigInt --- Facepunch.Steamworks/SteamNetworkingUtils.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Facepunch.Steamworks/SteamNetworkingUtils.cs b/Facepunch.Steamworks/SteamNetworkingUtils.cs index fdb1672..44766ff 100644 --- a/Facepunch.Steamworks/SteamNetworkingUtils.cs +++ b/Facepunch.Steamworks/SteamNetworkingUtils.cs @@ -244,7 +244,7 @@ internal static void OutputDebugMessages() #region Config Internals - internal unsafe static bool GetConfigInt( NetConfig type, int value ) + internal unsafe static bool SetConfigInt( NetConfig type, int value ) { int* ptr = &value; return Internal.SetConfigValue( type, NetConfigScope.Global, IntPtr.Zero, NetConfigType.Int32, (IntPtr)ptr );