From 7b35c8577a78aeeebf6a935155d066854048376f Mon Sep 17 00:00:00 2001 From: spycrab Date: Sat, 21 Apr 2018 23:27:54 +0200 Subject: [PATCH] Qt: Fix crashes when closing render window --- Source/Core/DolphinQt2/MainWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt2/MainWindow.cpp b/Source/Core/DolphinQt2/MainWindow.cpp index 49cf3a3af9..88b785177a 100644 --- a/Source/Core/DolphinQt2/MainWindow.cpp +++ b/Source/Core/DolphinQt2/MainWindow.cpp @@ -595,7 +595,7 @@ bool MainWindow::RequestStop() void MainWindow::ForceStop() { - BootManager::Stop(); + Core::Stop(); EnableScreenSaver(true); }