diff options
author | Narr the Reg <[email protected]> | 2023-12-18 19:32:13 -0600 |
---|---|---|
committer | Narr the Reg <[email protected]> | 2023-12-18 20:28:55 -0600 |
commit | 53956a299060ee71d77f08adbc45aaac217be376 (patch) | |
tree | cdd3c0f5c4a42deb484d5a31ec597b1925d71ae0 /src/yuzu/uisettings.h | |
parent | d590cfb9d05f4130c9ecf1686338cb5fa161fbda (diff) | |
download | yuzu-android-53956a299060ee71d77f08adbc45aaac217be376.tar.gz yuzu-android-53956a299060ee71d77f08adbc45aaac217be376.zip |
yuzu: Make language persistent and remove symbols_path
Diffstat (limited to 'src/yuzu/uisettings.h')
-rw-r--r-- | src/yuzu/uisettings.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/yuzu/uisettings.h b/src/yuzu/uisettings.h index 549a39e1b..f9906be33 100644 --- a/src/yuzu/uisettings.h +++ b/src/yuzu/uisettings.h @@ -154,12 +154,11 @@ struct Values { Setting<u32> screenshot_height{linkage, 0, "screenshot_height", Category::Screenshots}; std::string roms_path; - std::string symbols_path; std::string game_dir_deprecated; bool game_dir_deprecated_deepscan; QVector<GameDir> game_dirs; QStringList recent_files; - std::string language; + Setting<std::string> language{linkage, {}, "language", Category::Paths}; std::string theme; |