From 9501e52462ddf67b1cdc4b5951951f6cf5dbc30b Mon Sep 17 00:00:00 2001 From: Areloch Date: Mon, 8 May 2017 19:13:10 -0500 Subject: [PATCH] ups the #pragma pack call from 4 to 8 when using 64bit, as per suggested settings. This shaves off a lot of compatibility warnings. --- Engine/source/console/engineFunctions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Engine/source/console/engineFunctions.h b/Engine/source/console/engineFunctions.h index cbe5b1971..1b3a51e7d 100644 --- a/Engine/source/console/engineFunctions.h +++ b/Engine/source/console/engineFunctions.h @@ -80,7 +80,7 @@ struct EngineFunctionDefaultArguments // Need byte-aligned packing for the default argument structures. #ifdef _WIN64 -#pragma pack( push, 4 ) +#pragma pack( push, 8 ) #else #pragma pack( push, 1 ) #endif