Skip to content

Commit 0f3969d

Browse files
shad0wshayd3github-actions[bot]
authored andcommitted
maintenance
1 parent e10d71d commit 0f3969d

4 files changed

Lines changed: 11 additions & 11 deletions

File tree

CommonLibF4/include/RE/Bethesda/BSGraphics.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -633,9 +633,9 @@ namespace RE
633633
}
634634

635635
// members
636-
RenderTargetProperties renderTargetData[100]; // 000
637-
DepthStencilTargetProperties depthStencilTargetData[12]; // C80
638-
CubeMapRenderTargetProperties cubeMapRenderTargetData[1]; // DA0
636+
RenderTargetProperties renderTargetData[100]; // 000
637+
DepthStencilTargetProperties depthStencilTargetData[12]; // C80
638+
CubeMapRenderTargetProperties cubeMapRenderTargetData[1]; // DA0
639639
std::byte padDC4[0x30];
640640
std::uint32_t renderTargetID[100]; // DC4
641641
std::uint32_t depthStencilTargetID[12]; // F54

CommonLibF4/include/RE/Bethesda/IMenu.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -630,14 +630,14 @@ namespace RE
630630

631631
void CreateAndSetFiltersToColor(const NiColor& a_color, float a_brightness)
632632
{
633-
using func_t = void (BSGFxShaderFXTarget::*)(const NiColor&, float);
633+
using func_t = void (BSGFxShaderFXTarget::*)(const NiColor&, float);
634634
static REL::Relocation<func_t> func{ REL::ID(2287028) };
635635
func(this, a_color, a_brightness);
636636
}
637637

638638
void CreateAndSetFiltersToColor(std::uint8_t a_r, std::uint8_t a_g, std::uint8_t a_b, float a_brightness)
639639
{
640-
using func_t = void (BSGFxShaderFXTarget::*)(std::uint8_t, std::uint8_t, std::uint8_t, float);
640+
using func_t = void (BSGFxShaderFXTarget::*)(std::uint8_t, std::uint8_t, std::uint8_t, float);
641641
static REL::Relocation<func_t> func{ REL::ID(783104) };
642642
func(this, a_r, a_g, a_b, a_brightness);
643643
}

CommonLibF4/include/RE/Bethesda/ImageSpaceModifier.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,27 +78,27 @@ namespace RE
7878
static ImageSpaceModifierInstanceForm* Trigger(TESImageSpaceModifier* a_mod, float a_strength, NiAVObject* a_target)
7979
{
8080
using func_t = ImageSpaceModifierInstanceForm* (*)(TESImageSpaceModifier*, float, NiAVObject*);
81-
static REL::Relocation<func_t> func{ REL::ID(2199906) };
81+
static REL::Relocation<func_t> func{ REL::ID(2199906) };
8282
return func(a_mod, a_strength, a_target);
8383
}
8484

8585
static ImageSpaceModifierInstanceForm* Trigger(const BSFixedString& a_name)
8686
{
8787
using func_t = ImageSpaceModifierInstanceForm* (*)(const BSFixedString&);
88-
static REL::Relocation<func_t> func{ REL::ID(2199907) };
88+
static REL::Relocation<func_t> func{ REL::ID(2199907) };
8989
return func(a_name);
9090
}
9191

9292
static void Stop(TESImageSpaceModifier* a_mod)
9393
{
94-
using func_t = void (*)(TESImageSpaceModifier*);
94+
using func_t = void (*)(TESImageSpaceModifier*);
9595
static REL::Relocation<func_t> func{ REL::ID(2199909) };
9696
return func(a_mod);
9797
}
9898

9999
static void Stop(const BSFixedString& a_name)
100100
{
101-
using func_t = void (*)(const BSFixedString&);
101+
using func_t = void (*)(const BSFixedString&);
102102
static REL::Relocation<func_t> func{ REL::ID(2199910) };
103103
return func(a_name);
104104
}

CommonLibF4/include/RE/Bethesda/TESForms.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -832,7 +832,7 @@ namespace RE
832832
template <class... Args>
833833

834834
[[nodiscard]] bool Is(Args... a_args) const noexcept //
835-
requires(std::same_as<Args, ENUM_FORM_ID> && ...)
835+
requires(std::same_as<Args, ENUM_FORM_ID>&&...)
836836
{
837837
return (Is(a_args) || ...);
838838
}
@@ -856,7 +856,7 @@ namespace RE
856856
template <class... Args>
857857

858858
[[nodiscard]] bool IsNot(Args... a_args) const noexcept //
859-
requires(std::same_as<Args, ENUM_FORM_ID> && ...)
859+
requires(std::same_as<Args, ENUM_FORM_ID>&&...)
860860
{
861861
return (IsNot(a_args) && ...);
862862
}

0 commit comments

Comments
 (0)