diff --git a/LittleNightmares/dllmain.cpp b/LittleNightmares/dllmain.cpp index 9a0250f..bf1382e 100644 --- a/LittleNightmares/dllmain.cpp +++ b/LittleNightmares/dllmain.cpp @@ -348,6 +348,7 @@ static void CAFixEnabled() { // Chromatic aberrations // UE Console creation static void EnableConsole() { + if (g_Console_Enabled) return; if (!g_Console) { logger->info("------------------ User inputs ------------------"); return; diff --git a/LittleNightmaresII/dllmain.cpp b/LittleNightmaresII/dllmain.cpp index 91d1de7..d3d62fd 100644 --- a/LittleNightmaresII/dllmain.cpp +++ b/LittleNightmaresII/dllmain.cpp @@ -324,6 +324,7 @@ static void VolumetricFogFixEnabled() { // UE Console creation static void EnableConsole() { + if (g_Console_Enabled) return; if (!g_Console) { logger->info("------------------ User inputs ------------------"); return;