From 39bc7b5c1bca6c4ea48b0cbe3f52d0ca18a47b8c Mon Sep 17 00:00:00 2001 From: Garry Newman Date: Tue, 25 Jun 2019 12:58:25 +0100 Subject: [PATCH] StructPlatformPackSize is 8 on win32 --- Facepunch.Steamworks/Utility/Platform.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Facepunch.Steamworks/Utility/Platform.cs b/Facepunch.Steamworks/Utility/Platform.cs index b1deebc..759a750 100644 --- a/Facepunch.Steamworks/Utility/Platform.cs +++ b/Facepunch.Steamworks/Utility/Platform.cs @@ -13,7 +13,7 @@ internal static class Platform public const int StructPlatformPackSize = 8; public const string LibraryName = "steam_api64"; #elif PLATFORM_WIN32 - public const int StructPlatformPackSize = 4; + public const int StructPlatformPackSize = 8; public const string LibraryName = "steam_api"; #elif PLATFORM_POSIX32 public const int StructPlatformPackSize = 4;