summaryrefslogtreecommitdiffstats
path: root/src/yuzu_cmd
diff options
context:
space:
mode:
authorNarr the Reg <juangerman-13@hotmail.com>2024-01-17 04:27:25 +0100
committerGitHub <noreply@github.com>2024-01-17 04:27:25 +0100
commit46c24352351be663bbbf7fff3ce328f86f09c9f6 (patch)
treef0d5328966edfc791d6febef348c3a84ed1cb77d /src/yuzu_cmd
parentMerge pull request #12686 from szepeviktor/typos3 (diff)
parentSave profile name used (diff)
downloadyuzu-46c24352351be663bbbf7fff3ce328f86f09c9f6.tar
yuzu-46c24352351be663bbbf7fff3ce328f86f09c9f6.tar.gz
yuzu-46c24352351be663bbbf7fff3ce328f86f09c9f6.tar.bz2
yuzu-46c24352351be663bbbf7fff3ce328f86f09c9f6.tar.lz
yuzu-46c24352351be663bbbf7fff3ce328f86f09c9f6.tar.xz
yuzu-46c24352351be663bbbf7fff3ce328f86f09c9f6.tar.zst
yuzu-46c24352351be663bbbf7fff3ce328f86f09c9f6.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();