diff options
| author | Anghelo Carvajal <angheloalf95@gmail.com> | 2021-12-26 19:24:12 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-26 17:24:12 -0500 |
| commit | 155a463a54a3bc9b9c86000ae6d819455875ec15 (patch) | |
| tree | 22e9b3545e0051dac9162d901ae49cb87d1ba647 /ZAPD/ZSkeleton.cpp | |
| parent | 431c1bc46c64712a42a22893dc28e9503fe3934a (diff) | |
Fix padding generation for double word aligned variables (#223)
* Don't produce a symbol for 8byte aligned symbols
* Change Vtx alignment to 8
* Remove Align16
* handle unaccounteds properly when stuff has Align8 alignment
* format
* Fix warning
* typo
Diffstat (limited to 'ZAPD/ZSkeleton.cpp')
| -rw-r--r-- | ZAPD/ZSkeleton.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ZAPD/ZSkeleton.cpp b/ZAPD/ZSkeleton.cpp index 1a2f93f..4467c96 100644 --- a/ZAPD/ZSkeleton.cpp +++ b/ZAPD/ZSkeleton.cpp @@ -139,7 +139,7 @@ ZResourceType ZSkeleton::GetResourceType() const DeclarationAlignment ZSkeleton::GetDeclarationAlignment() const { - return DeclarationAlignment::Align16; + return DeclarationAlignment::Align4; } uint8_t ZSkeleton::GetLimbCount() |
