Update error message for Wine compatibility check

This commit is contained in:
EnderIce2 2025-04-08 08:21:03 +03:00
parent 3a0b9ddb2a
commit 65b5625a57
Signed by: enderice2
GPG Key ID: FEB6B8A8507BA62E

2
main.c
View File

@ -59,7 +59,7 @@ void DetectWine()
if (!GetProcAddress(hNTdll, "wine_get_version"))
{
MessageBox(NULL, "This program is only intended to run under Wine.",
GetErrorMessage(), MB_OK | MB_ICONINFORMATION);
"Error", MB_OK | MB_ICONINFORMATION);
ExitProcess(1);
}