From b7b6b5162cc96f0ef1a120af817ce3dbf98ebdfa Mon Sep 17 00:00:00 2001 From: spycrab Date: Tue, 8 May 2018 17:00:43 +0200 Subject: [PATCH] Qt/GeneralWidget: Refresh backend settings properly --- Source/Core/DolphinQt2/Config/Graphics/GeneralWidget.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt2/Config/Graphics/GeneralWidget.cpp b/Source/Core/DolphinQt2/Config/Graphics/GeneralWidget.cpp index e78985321c..f2d970cebc 100644 --- a/Source/Core/DolphinQt2/Config/Graphics/GeneralWidget.cpp +++ b/Source/Core/DolphinQt2/Config/Graphics/GeneralWidget.cpp @@ -201,7 +201,11 @@ void GeneralWidget::SaveSettings() } } SConfig::GetInstance().m_strVideoBackend = current_backend; - backend->InitBackendInfo(); + + g_Config.Refresh(); + + g_video_backend = backend.get(); + g_video_backend->InitBackendInfo(); emit BackendChanged(QString::fromStdString(current_backend)); break; }