Skip to content

Commit

Permalink
ci: maintenance
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 6, 2024
1 parent 4665572 commit 6018ad4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions include/RE/Starfield.h
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
8 changes: 4 additions & 4 deletions include/RE/T/TES.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion src/RE/N/NiMatrix3.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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_t> func{ ID::NiMatrix3::ToEulerAnglesXYZ };
return func(this, a_x, a_y, a_z);
}
Expand Down

0 comments on commit 6018ad4

Please sign in to comment.