From c5a03efec432592dd64fb49639b557d4d007a83c Mon Sep 17 00:00:00 2001 From: Jack Andersen Date: Mon, 11 Apr 2016 22:17:14 -1000 Subject: [PATCH] Update CAllFormatsAnimSource.hpp --- Runtime/Character/CAllFormatsAnimSource.hpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Runtime/Character/CAllFormatsAnimSource.hpp b/Runtime/Character/CAllFormatsAnimSource.hpp index aa360ca05..92fdd6be3 100644 --- a/Runtime/Character/CAllFormatsAnimSource.hpp +++ b/Runtime/Character/CAllFormatsAnimSource.hpp @@ -20,7 +20,11 @@ enum class EAnimFormat class CAnimFormatUnion { - EAnimFormat x0_format; + union + { + EAnimFormat x0_format; + intptr_t _align = 0; + }; u8 x4_storage[sizeof(CAnimSource)]; static void SubConstruct(u8* storage, EAnimFormat fmt, CInputStream& in, IObjectStore& store);