diff options
author | bunnei <bunneidev@gmail.com> | 2020-05-14 03:41:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-14 03:41:45 +0200 |
commit | 670a7f51e8f3134fb246a471f0c9833904a6234e (patch) | |
tree | d20a6ccc6070f49aefd3069456545451a42e66cf /src/core/settings.h | |
parent | Merge pull request #3899 from ReinUsesLisp/float-comparisons (diff) | |
parent | time_zone: Use std::chrono::seconds for strong typing. (diff) | |
download | yuzu-670a7f51e8f3134fb246a471f0c9833904a6234e.tar yuzu-670a7f51e8f3134fb246a471f0c9833904a6234e.tar.gz yuzu-670a7f51e8f3134fb246a471f0c9833904a6234e.tar.bz2 yuzu-670a7f51e8f3134fb246a471f0c9833904a6234e.tar.lz yuzu-670a7f51e8f3134fb246a471f0c9833904a6234e.tar.xz yuzu-670a7f51e8f3134fb246a471f0c9833904a6234e.tar.zst yuzu-670a7f51e8f3134fb246a471f0c9833904a6234e.zip |
Diffstat (limited to 'src/core/settings.h')
-rw-r--r-- | src/core/settings.h | 4 |
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 { s32 current_user; s32 language_index; s32 region_index; + s32 time_zone_index; s32 sound_index; // Controls @@ -490,6 +491,9 @@ struct Values { bool IsGPULevelExtreme(); bool IsGPULevelHigh(); +std::string GetTimeZoneString(); + void Apply(); void LogSettings(); + } // namespace Settings |