Fix for 64 bit.

This commit is contained in:
Vincent Gee 2014-11-30 19:14:20 -05:00
parent 7bf99e38ec
commit ee55d302d8

View file

@ -77,7 +77,11 @@ struct EngineFunctionDefaultArguments
// Need byte-aligned packing for the default argument structures.
#ifdef _WIN64
#pragma pack( push, 4 )
#else
#pragma pack( push, 1 )
#endif
// Structure encapsulating default arguments to an engine API function.