diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2020-08-27 17:58:28 +0200 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2020-09-04 18:23:25 +0200 |
commit | 6597b3817cd1e03577185aea7eb88856e046dc4d (patch) | |
tree | 6ba2f9088f095377610cdba3af34422259a3a148 /src | |
parent | applets/controller: Implement fallback applet for the SDL frontend (diff) | |
download | yuzu-6597b3817cd1e03577185aea7eb88856e046dc4d.tar yuzu-6597b3817cd1e03577185aea7eb88856e046dc4d.tar.gz yuzu-6597b3817cd1e03577185aea7eb88856e046dc4d.tar.bz2 yuzu-6597b3817cd1e03577185aea7eb88856e046dc4d.tar.lz yuzu-6597b3817cd1e03577185aea7eb88856e046dc4d.tar.xz yuzu-6597b3817cd1e03577185aea7eb88856e046dc4d.tar.zst yuzu-6597b3817cd1e03577185aea7eb88856e046dc4d.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/yuzu/main.cpp | 4 |
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( emit ControllerSelectorReconfigureFinished(); + // Don't forget to apply settings. + Settings::Apply(); + config->Save(); + UpdateStatusButtons(); } |