Unnecessary var removal

This commit is contained in:
2025-10-29 21:21:02 +01:00
parent 148c9cd2ec
commit c2e15cc767

View File

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