Remove unnecessary code for starting the bridge service

This commit is contained in:
EnderIce2
2024-05-29 23:06:16 +03:00
parent 8fbe00b555
commit a640dd5af1
2 changed files with 3 additions and 18 deletions

4
main.c
View File

@ -72,9 +72,7 @@ void DetectWine()
{
int result = MessageBox(NULL, "This program is designed for Linux and macOS only!\nDo you want to proceed?",
NULL, MB_YESNO | MB_ICONQUESTION);
if (result == IDYES)
return;
else if (result == IDNO)
if (result == IDNO)
ExitProcess(1);
}