From a732a1459662a95c514c887f553a3172eea7d8be Mon Sep 17 00:00:00 2001 From: Emmanuel AYME Date: Tue, 12 Aug 2025 14:24:44 +0200 Subject: [PATCH] Removed unnecessary dialog box message --- South Of Midnight/dllmain.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/South Of Midnight/dllmain.cpp b/South Of Midnight/dllmain.cpp index 894a7d5..c0649b4 100644 --- a/South Of Midnight/dllmain.cpp +++ b/South Of Midnight/dllmain.cpp @@ -40,9 +40,9 @@ const char* DONATION_URL = "https://buymeacoffee.com/k4sh44"; // Load and unload game core dll functions /!\ necessary static void LoadFixDLL() { - MessageBoxA(nullptr, "LoadFixDll", "Erreur", MB_OK); if (fixLib) return; fixLib = LoadLibraryA("SouthOfMidnightCore.dll"); + if (!fixLib) { MessageBoxA(nullptr, "Impossible to load game core dll", "Erreur", MB_OK); return;