From 8c3be8e6f82ee5ab3582e5b47e36cec7819f44e5 Mon Sep 17 00:00:00 2001 From: Emmanuel AYME Date: Mon, 17 Nov 2025 15:32:00 +0100 Subject: [PATCH] Remove unnecessary code --- LittleNightmaresII/dllmain.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/LittleNightmaresII/dllmain.cpp b/LittleNightmaresII/dllmain.cpp index 7cbe5e8..ec8fe26 100644 --- a/LittleNightmaresII/dllmain.cpp +++ b/LittleNightmaresII/dllmain.cpp @@ -34,7 +34,6 @@ static bool CA_fix_enabled = false; static bool Vignetting_fix_enabled = false; static bool Fog_fix_enabled = false; static bool VolumetricFog_fix_enabled = false; -static bool skip_intro = true; static bool fix_enabled = false; static bool console = true; static int worldFOVvalue = 0; @@ -77,7 +76,6 @@ static void LoadFixDLL() if (SetFOV) SetFOV(worldFOVvalue); if (SetFixEnabled) SetFixEnabled(fix_enabled, true); if (SetFixesEnabled) { - //SetFixesEnabled(GameFixes::SkipIntro, skip_intro); SetFixesEnabled(GameFixes::FOV, fov_fix_enabled); SetFixesEnabled(GameFixes::UltraWide, ultrawide_fix_enabled); SetFixesEnabled(GameFixes::DOF, DOF_fix_enabled);