diff --git a/include/RE/RTTI.h b/include/RE/RTTI.h index 5782a7d5..c11e520d 100644 --- a/include/RE/RTTI.h +++ b/include/RE/RTTI.h @@ -74,10 +74,10 @@ namespace RE }; // members - RVA typeDescriptor; // 00 - std::uint32_t numContainedBases; // 04 - PMD pmd; // 08 - REX::EnumSet attributes; // 14 + RVA typeDescriptor; // 00 + std::uint32_t numContainedBases; // 04 + PMD pmd; // 08 + REX::EnumSet attributes; // 14 }; static_assert(sizeof(BaseClassDescriptor) == 0x18); @@ -94,10 +94,10 @@ namespace RE }; // members - std::uint32_t signature; // 00 - REX::EnumSet attributes; // 04 - std::uint32_t numBaseClasses; // 08 - RVA baseClassArray; // 0C + std::uint32_t signature; // 00 + REX::EnumSet attributes; // 04 + std::uint32_t numBaseClasses; // 08 + RVA baseClassArray; // 0C }; static_assert(sizeof(ClassHierarchyDescriptor) == 0x10); diff --git a/include/RE/S/Stack.h b/include/RE/S/Stack.h index 61befd8b..b84f4a04 100644 --- a/include/RE/S/Stack.h +++ b/include/RE/S/Stack.h @@ -81,24 +81,24 @@ namespace RE::BSScript } // members - IMemoryPagePolicy* policy; // 08 - void* unk10; // 10 - something to do with guards, guardPolicy maybe? - IProfilePolicy* profilePolicy; // 18 - void* unk20; // 20 - char pages[0x40]; // 28 - BSTSmallArray - StackFrame* top; // 68 - BSTSmartPointer owningTasklet; // 70 - BSTSmartPointer callback; // 78 - BSTSmartPointer objToUnbind; // 80 - BSTSmartPointer nextStack; // 88 - Variable returnValue; // 90 - std::uint64_t unk98; // A0 - std::uint64_t unkA0; // A8 - std::uint32_t frames; // B0 - std::uint32_t stackID; // B4 - State state; // B8 - FreezeState freezeState; // BC - StackType stackType; // C0 + IMemoryPagePolicy* policy; // 08 + void* unk10; // 10 - something to do with guards, guardPolicy maybe? + IProfilePolicy* profilePolicy; // 18 + void* unk20; // 20 + char pages[0x40]; // 28 - BSTSmallArray + StackFrame* top; // 68 + BSTSmartPointer owningTasklet; // 70 + BSTSmartPointer callback; // 78 + BSTSmartPointer objToUnbind; // 80 + BSTSmartPointer nextStack; // 88 + Variable returnValue; // 90 + std::uint64_t unk98; // A0 + std::uint64_t unkA0; // A8 + std::uint32_t frames; // B0 + std::uint32_t stackID; // B4 + State state; // B8 + FreezeState freezeState; // BC + StackType stackType; // C0 }; static_assert(sizeof(Stack) == 0xC8); }