From c2e15cc767f6770af724c68ad2e8374d87fff603 Mon Sep 17 00:00:00 2001 From: Emmanuel AYME Date: Wed, 29 Oct 2025 21:21:02 +0100 Subject: [PATCH] Unnecessary var removal --- TormentedSouls2/dllmain.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/TormentedSouls2/dllmain.cpp b/TormentedSouls2/dllmain.cpp index bfdc952..2c8214f 100644 --- a/TormentedSouls2/dllmain.cpp +++ b/TormentedSouls2/dllmain.cpp @@ -27,7 +27,6 @@ static bool g_DOF_fix_enabled = false; static bool g_CA_fix_enabled = false; static bool g_Vignetting_fix_enabled = false; static bool g_Fog_fix_enabled = false; -static bool g_VolumetricFog_fix_enabled = false; static int g_AdditionalFOVValue = 0; // Shared values @@ -47,7 +46,6 @@ static uint8_t* FPSaddress = nullptr; static uint8_t* DOFaddress = nullptr; static uint8_t* CAaddress = nullptr; static uint8_t* Vignettingaddress = nullptr; -static uint8_t* VolumetricFogaddress = nullptr; static uint8_t* Fogaddress = nullptr; static uint8_t* CameraComponentaddress = nullptr; static uint8_t* ConstrainAspectRatioaddress = nullptr; @@ -57,7 +55,6 @@ static uint8_t* AspectRatioAxisConstraintaddress = nullptr; static SafetyHookMid FOVHook{}; static SafetyHookMid FPSHook{}; static SafetyHookMid FogHook{}; -static SafetyHookMid ProcessEventHook{}; // Prototypes static void FOVFixEnabled();