From 030cdd6a0327e39a0debad229d0c1370246fb8b0 Mon Sep 17 00:00:00 2001 From: Akash Mozumdar Date: Sat, 1 Sep 2018 15:49:16 -0400 Subject: [PATCH] bugfix --- GUI/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GUI/main.cpp b/GUI/main.cpp index 74f73d1..0244468 100644 --- a/GUI/main.cpp +++ b/GUI/main.cpp @@ -20,7 +20,7 @@ LONG WINAPI ExceptionHandler(EXCEPTION_POINTERS* exception) int main(int argc, char *argv[]) { - AddVectoredExceptionHandler(1, ExceptionHandler); + SetUnhandledExceptionFilter(ExceptionHandler); QApplication a(argc, argv); MainWindow w; w.show();