Removed unnecessary dialog box message

This commit is contained in:
2025-08-12 14:24:44 +02:00
parent 6f560959ae
commit a732a14596

View File

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