diff --git a/include/RE/Starfield.h b/include/RE/Starfield.h index c21f0e79..c9b79be5 100644 --- a/include/RE/Starfield.h +++ b/include/RE/Starfield.h @@ -319,12 +319,15 @@ #include "RE/N/NiColor.h" #include "RE/N/NiFrustum.h" #include "RE/N/NiMatrix3.h" +#include "RE/N/NiObject.h" +#include "RE/N/NiObjectNET.h" #include "RE/N/NiPoint.h" #include "RE/N/NiQuaternion.h" #include "RE/N/NiRect.h" #include "RE/N/NiRefObject.h" #include "RE/N/NiSmartPointer.h" #include "RE/N/NiTransform.h" +#include "RE/N/NiUpdateData.h" #include "RE/O/Object.h" #include "RE/O/ObjectBindPolicy.h" #include "RE/O/ObjectTypeInfo.h" diff --git a/include/RE/T/TES.h b/include/RE/T/TES.h index 9eee3df8..30d8bff0 100644 --- a/include/RE/T/TES.h +++ b/include/RE/T/TES.h @@ -44,10 +44,10 @@ namespace RE } // members - std::byte pad010[0x18]; // 010 - Sky* sky; // 028 - std::byte pad030[0xB8]; // 030 - TESObjectCELL* interiorCell; // 0E8 + std::byte pad010[0x18]; // 010 + Sky* sky; // 028 + std::byte pad030[0xB8]; // 030 + TESObjectCELL* interiorCell; // 0E8 }; static_assert(offsetof(TES, sky) == 0x28); static_assert(offsetof(TES, interiorCell) == 0xE8); diff --git a/src/RE/N/NiMatrix3.cpp b/src/RE/N/NiMatrix3.cpp index 8d3d4d39..c8148968 100644 --- a/src/RE/N/NiMatrix3.cpp +++ b/src/RE/N/NiMatrix3.cpp @@ -114,7 +114,7 @@ namespace RE bool NiMatrix3::ToEulerAnglesXYZ(float& a_x, float& a_y, float& a_z) const { - using func_t = bool(*)(const NiMatrix3*, float&, float&, float&); + using func_t = bool (*)(const NiMatrix3*, float&, float&, float&); static REL::Relocation func{ ID::NiMatrix3::ToEulerAnglesXYZ }; return func(this, a_x, a_y, a_z); }