diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2022-12-16 14:05:00 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-16 14:05:00 -0500 |
commit | bbb202ceedf8c4054f6a602ad572ba8df33e315d (patch) | |
tree | 8b51f7711e7b698ca712c24b854f88a0022e1d9c /src/common/settings.cpp | |
parent | 789da737afe8e3b242d8adffb1444a663a78117d (diff) | |
parent | c5f519e1e4d850ed582b073aff94cbf511f6b931 (diff) |
Merge pull request #6354 from ogniK5377/device-name
Set: Allow setting device nickname
Diffstat (limited to 'src/common/settings.cpp')
-rw-r--r-- | src/common/settings.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/settings.cpp b/src/common/settings.cpp index d8ffe34c3..149e621f9 100644 --- a/src/common/settings.cpp +++ b/src/common/settings.cpp @@ -40,6 +40,7 @@ void LogSettings() { LOG_INFO(Config, "yuzu Configuration:"); log_setting("Controls_UseDockedMode", values.use_docked_mode.GetValue()); log_setting("System_RngSeed", values.rng_seed.GetValue().value_or(0)); + log_setting("System_DeviceName", values.device_name.GetValue()); log_setting("System_CurrentUser", values.current_user.GetValue()); log_setting("System_LanguageIndex", values.language_index.GetValue()); log_setting("System_RegionIndex", values.region_index.GetValue()); |