summaryrefslogtreecommitdiffstats
path: root/src/yuzu_cmd
diff options
context:
space:
mode:
authorflodavid <fl.david.53@gmail.com>2023-12-16 18:26:26 +0100
committerflodavid <fl.david.53@gmail.com>2024-01-08 18:43:56 +0100
commit63b835f822e5167aa529f2c27c5df136defef6eb (patch)
tree45e69dabebeb24510902818d8e5d78e39bd4a365 /src/yuzu_cmd
parentMerge pull request #12608 from szepeviktor/typos (diff)
downloadyuzu-63b835f822e5167aa529f2c27c5df136defef6eb.tar
yuzu-63b835f822e5167aa529f2c27c5df136defef6eb.tar.gz
yuzu-63b835f822e5167aa529f2c27c5df136defef6eb.tar.bz2
yuzu-63b835f822e5167aa529f2c27c5df136defef6eb.tar.lz
yuzu-63b835f822e5167aa529f2c27c5df136defef6eb.tar.xz
yuzu-63b835f822e5167aa529f2c27c5df136defef6eb.tar.zst
yuzu-63b835f822e5167aa529f2c27c5df136defef6eb.zip
Diffstat (limited to 'src/yuzu_cmd')
-rw-r--r--src/yuzu_cmd/sdl_config.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/yuzu_cmd/sdl_config.cpp b/src/yuzu_cmd/sdl_config.cpp
index e81bf5d45..995114510 100644
--- a/src/yuzu_cmd/sdl_config.cpp
+++ b/src/yuzu_cmd/sdl_config.cpp
@@ -5,6 +5,7 @@
#define SDL_MAIN_HANDLED
#include <SDL.h>
+#include "common/logging/log.h"
#include "input_common/main.h"
#include "sdl_config.h"
@@ -64,7 +65,7 @@ void SdlConfig::ReloadAllValues() {
}
void SdlConfig::SaveAllValues() {
- Save();
+ SaveValues();
SaveSdlValues();
}
@@ -177,6 +178,7 @@ void SdlConfig::ReadHidbusValues() {
}
void SdlConfig::SaveSdlValues() {
+ LOG_DEBUG(Config, "Saving SDL configuration values");
SaveSdlControlValues();
WriteToIni();