Skip to content

Commit

Permalink
style: 🎨 apply clang-format changes
Browse files Browse the repository at this point in the history
  • Loading branch information
doodlum authored and github-actions[bot] committed Dec 14, 2024
1 parent cd8bf2f commit ffad053
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/Features/LightLimitFix.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
#include <shared_mutex>

#include "Feature.h"
#include "Raytracing.h"
#include "ShaderCache.h"
#include <Features/LightLimitFix/ParticleLights.h>
#include "Raytracing.h"

struct LightLimitFix : Feature
{
Expand Down
3 changes: 1 addition & 2 deletions src/Raytracing.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,7 @@ void Raytracing::UpdateGeometry(RE::BSGeometry* a_geometry)

void Raytracing::RemoveGeometry(RE::BSGeometry* a_geometry)
{
if (geometries.erase(a_geometry))
{
if (geometries.erase(a_geometry)) {
// Remove Event
}
}
4 changes: 2 additions & 2 deletions src/Raytracing.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pragma once

#include <unordered_set>
#include <eastl/set.h>
#include <unordered_set>

#include <d3d12.h>

Expand Down Expand Up @@ -70,7 +70,7 @@ class Raytracing
{
stl::write_vfunc<0x6, BSLightingShader_SetupGeometry>(RE::VTABLE_BSLightingShader[0]);

// stl::detour_thunk<NiNode_Destroy>(REL::RelocationID(68937, 70288));
// stl::detour_thunk<NiNode_Destroy>(REL::RelocationID(68937, 70288));

logger::info("[Raytracing] Installed hooks");
}
Expand Down
2 changes: 1 addition & 1 deletion src/XSEPlugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
#include "Feature.h"
#include "FrameAnnotations.h"
#include "Menu.h"
#include "Raytracing.h"
#include "ShaderCache.h"
#include "State.h"
#include "TruePBR.h"
#include "Upscaling.h"
#include "Raytracing.h"

#include "ENB/ENBSeriesAPI.h"

Expand Down

0 comments on commit ffad053

Please sign in to comment.