Skip to content

Commit

Permalink
maintenance
Browse files Browse the repository at this point in the history
  • Loading branch information
powerof3 authored and github-actions[bot] committed Nov 22, 2024
1 parent 0c5a25e commit 7dc2f73
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/RE/S/ShadowSceneNode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ namespace RE
{
BSLight* ShadowSceneNode::AddLight(NiLight* a_light, const ShadowSceneNode::LIGHT_CREATE_PARAMS& a_params)
{
using func_t = BSLight* (*)(ShadowSceneNode*, NiLight*, const ShadowSceneNode::LIGHT_CREATE_PARAMS&);
using func_t = BSLight* (*)(ShadowSceneNode*, NiLight*, const ShadowSceneNode::LIGHT_CREATE_PARAMS&);
static REL::Relocation<func_t> func{ RELOCATION_ID(99692, 106326) };
return func(this, a_light, a_params);
}

void ShadowSceneNode::AddLight(BSLight* a_light)
{
using func_t = void (*)(ShadowSceneNode*, BSLight*);
using func_t = void (*)(ShadowSceneNode*, BSLight*);
static REL::Relocation<func_t> func{ RELOCATION_ID(99693, 106327) };
return func(this, a_light);
}
Expand Down Expand Up @@ -48,14 +48,14 @@ namespace RE

void ShadowSceneNode::RemoveLight(NiLight* a_light)
{
using func_t = void (*)(ShadowSceneNode*, NiLight*);
using func_t = void (*)(ShadowSceneNode*, NiLight*);
static REL::Relocation<func_t> func{ RELOCATION_ID(99697, 106331) };
return func(this, a_light);
}

void ShadowSceneNode::RemoveLight(const NiPointer<BSLight>& a_light)
{
using func_t = void (*)(ShadowSceneNode*, const NiPointer<BSLight>&);
using func_t = void (*)(ShadowSceneNode*, const NiPointer<BSLight>&);
static REL::Relocation<func_t> func{ RELOCATION_ID(99698, 106332) };
return func(this, a_light);
}
Expand Down

0 comments on commit 7dc2f73

Please sign in to comment.