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();