Skip to content
Snippets Groups Projects
Commit acf5fca6 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Fix bool inversion introduced by 8f7cfadf

quitting needs to be set to true, not false when quitting. :(
parent 829c5009
No related branches found
No related tags found
No related merge requests found
Pipeline #6726 failed
...@@ -845,7 +845,7 @@ check_exit(bool force) ...@@ -845,7 +845,7 @@ check_exit(bool force)
if (!confirm("Are you sure you want to exit?", NULL)) if (!confirm("Are you sure you want to exit?", NULL))
return false; return false;
} }
quitting = false; quitting = true;
return true; return true;
} }
return false; return false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment