From 65b5625a57b3b3c62c095cb99b7a9fb89063a844 Mon Sep 17 00:00:00 2001 From: EnderIce2 Date: Tue, 8 Apr 2025 08:21:03 +0300 Subject: [PATCH] Update error message for Wine compatibility check --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index ec793b7..6d71dee 100644 --- a/main.c +++ b/main.c @@ -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); }