This commit is contained in:
Phillip Stephens 2016-04-12 03:53:40 -07:00
commit 497ad50fa6
1 changed files with 5 additions and 1 deletions

View File

@ -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);