summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Morph2020-08-27 11:58:28 -0400
committerGravatar Morph2020-09-04 12:23:25 -0400
commit6597b3817cd1e03577185aea7eb88856e046dc4d (patch)
tree6ba2f9088f095377610cdba3af34422259a3a148 /src
parentapplets/controller: Implement fallback applet for the SDL frontend (diff)
downloadyuzu-6597b3817cd1e03577185aea7eb88856e046dc4d.tar.gz
yuzu-6597b3817cd1e03577185aea7eb88856e046dc4d.tar.xz
yuzu-6597b3817cd1e03577185aea7eb88856e046dc4d.zip
main: Apply settings after applet configuration is complete.
Diffstat (limited to 'src')
-rw-r--r--src/yuzu/main.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp
index 2ac8344a3..68ad43a80 100644
--- a/src/yuzu/main.cpp
+++ b/src/yuzu/main.cpp
@@ -295,6 +295,10 @@ void GMainWindow::ControllerSelectorReconfigureControllers(
295 295
296 emit ControllerSelectorReconfigureFinished(); 296 emit ControllerSelectorReconfigureFinished();
297 297
298 // Don't forget to apply settings.
299 Settings::Apply();
300 config->Save();
301
298 UpdateStatusButtons(); 302 UpdateStatusButtons();
299} 303}
300 304