Skip to content

Commit eef2ef9

Browse files
shad0wshayd3github-actions[bot]
authored andcommitted
maintenance
1 parent 6282bee commit eef2ef9

File tree

5 files changed

+16
-18
lines changed

5 files changed

+16
-18
lines changed

CommonLibF4/include/RE/Bethesda/BSGraphicsUtility.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ namespace RE::BSGraphics::Utility
4747
using func_t = decltype(&PackVertexData);
4848
static REL::Relocation<func_t> func{ REL::ID(2277106) };
4949
return func(a_numVertices, a_positions, a_texCoords0, a_texCoords1, a_normals, a_binormals, a_tangents, a_colors, a_skinBoneWeights, a_skinBoneIndices, a_landscapeData1, a_landscapeData2, a_eyeData, a_buffer, a_bufferSize, a_vertexMap, a_dynamicFlags, a_tangentXBuffer, a_tangentXBufferStride);
50-
5150
}
5251

5352
inline void UnpackVertexData(

CommonLibF4/include/RE/Bethesda/TESBoundObjects.h

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -908,19 +908,19 @@ namespace RE
908908
};
909909

910910
// members
911-
std::uint32_t limit; // 00
912-
float radius; // 04
913-
float lifetime; // 08
914-
float imageSpaceRadius; // 0C
915-
float targetInterval; // 10
916-
stl::enumeration<BGSHazardFlags, std::uint32_t> flags; // 14
917-
SpellItem* spell; // 18
918-
TESObjectLIGH* light; // 20
919-
BGSImpactDataSet* impactDataSet; // 28
920-
BGSSoundDescriptorForm* sound; // 30
921-
float fullEffectRadius; // 38
922-
float taperWeight; // 3C
923-
float taperCurve; // 40
911+
std::uint32_t limit; // 00
912+
float radius; // 04
913+
float lifetime; // 08
914+
float imageSpaceRadius; // 0C
915+
float targetInterval; // 10
916+
stl::enumeration<BGSHazardFlags, std::uint32_t> flags; // 14
917+
SpellItem* spell; // 18
918+
TESObjectLIGH* light; // 20
919+
BGSImpactDataSet* impactDataSet; // 28
920+
BGSSoundDescriptorForm* sound; // 30
921+
float fullEffectRadius; // 38
922+
float taperWeight; // 3C
923+
float taperCurve; // 40
924924
};
925925
static_assert(sizeof(BGSHazardData) == 0x48);
926926

CommonLibF4/include/RE/Scaleform/Kernel/SF_Array.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,5 @@ namespace RE::Scaleform
9595
public ArrayBase<ArrayDataCC<T, AllocatorLH<T, SID>, SizePolicy>>
9696
{
9797
public:
98-
9998
};
10099
}

CommonLibF4/include/RE/Scaleform/Render/Render_ScreenToWorld.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace RE::Scaleform::Render
88
{
99
public:
1010
constexpr ScreenToWorld() = default;
11-
11+
1212
// members
1313
float sx{ std::numeric_limits<float>::max() }; // 00
1414
float sy{ std::numeric_limits<float>::max() }; // 04

CommonLibF4/src/REL/IAT.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ namespace REL
3434
return nullptr;
3535
}
3636

37-
const auto ntHeader = stl::adjust_pointer<REX::W32::IMAGE_NT_HEADERS64>(dosHeader, dosHeader->lfanew);
37+
const auto ntHeader = stl::adjust_pointer<REX::W32::IMAGE_NT_HEADERS64>(dosHeader, dosHeader->lfanew);
3838
const auto& dataDir = ntHeader->optionalHeader.dataDirectory[REX::W32::IMAGE_DIRECTORY_ENTRY_IMPORT];
39-
const auto importDesc = stl::adjust_pointer<REX::W32::IMAGE_IMPORT_DESCRIPTOR>(dosHeader, dataDir.virtualAddress);
39+
const auto importDesc = stl::adjust_pointer<REX::W32::IMAGE_IMPORT_DESCRIPTOR>(dosHeader, dataDir.virtualAddress);
4040

4141
for (auto import = importDesc; import->characteristics != 0; ++import) {
4242
auto name = stl::adjust_pointer<const char>(dosHeader, import->name);

0 commit comments

Comments
 (0)