From abb4b7f6b65cb918d2451d873bfbf9c3eb6d1f7f Mon Sep 17 00:00:00 2001 From: Garry Newman Date: Tue, 31 Mar 2020 08:28:35 +0100 Subject: [PATCH] Compile fix --- Facepunch.Steamworks/Structs/InventoryDef.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Facepunch.Steamworks/Structs/InventoryDef.cs b/Facepunch.Steamworks/Structs/InventoryDef.cs index fe93091..8150940 100644 --- a/Facepunch.Steamworks/Structs/InventoryDef.cs +++ b/Facepunch.Steamworks/Structs/InventoryDef.cs @@ -98,7 +98,7 @@ namespace Steamworks if ( _properties!= null && _properties.TryGetValue( name, out string val ) ) return val; - uint _ = (uint)Helpers.MaxMemorySize; + uint _ = (uint)Helpers.MemoryBufferSize; if ( !SteamInventory.Internal.GetItemDefinitionProperty( Id, name, out var vl, ref _ ) ) return null;