summaryrefslogtreecommitdiff
path: root/src/core/settings.h
diff options
context:
space:
mode:
authorGravatar bunnei2020-05-11 17:50:07 -0400
committerGravatar bunnei2020-05-11 17:50:07 -0400
commit988e42a3f57e427e4f91172086ccc8a9a52f73eb (patch)
tree66ba9ab9aeff5cb1863e0cb731ee4edcf4a2cbc9 /src/core/settings.h
parentMerge pull request #3925 from ogniK5377/hid-SendKeyboardLockKeyEvent (diff)
downloadyuzu-988e42a3f57e427e4f91172086ccc8a9a52f73eb.tar.gz
yuzu-988e42a3f57e427e4f91172086ccc8a9a52f73eb.tar.xz
yuzu-988e42a3f57e427e4f91172086ccc8a9a52f73eb.zip
core: settings: Add a setting for time zone.
Diffstat (limited to 'src/core/settings.h')
-rw-r--r--src/core/settings.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/settings.h b/src/core/settings.h
index 163900f0b..c1266b341 100644
--- a/src/core/settings.h
+++ b/src/core/settings.h
@@ -394,6 +394,7 @@ struct Values {
394 s32 current_user; 394 s32 current_user;
395 s32 language_index; 395 s32 language_index;
396 s32 region_index; 396 s32 region_index;
397 s32 time_zone_index;
397 s32 sound_index; 398 s32 sound_index;
398 399
399 // Controls 400 // Controls
@@ -490,6 +491,9 @@ struct Values {
490bool IsGPULevelExtreme(); 491bool IsGPULevelExtreme();
491bool IsGPULevelHigh(); 492bool IsGPULevelHigh();
492 493
494std::string GetTimeZoneString();
495
493void Apply(); 496void Apply();
494void LogSettings(); 497void LogSettings();
498
495} // namespace Settings 499} // namespace Settings