浏览代码

Merge pull request #2004 from Areloch/PragmaPack

Ups the #pragma pack call from 4 to 8 when using 64bit
Areloch 8 年之前
父节点
当前提交
2b8532f679
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Engine/source/console/engineFunctions.h

+ 1 - 1
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