diff options
author | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-07-04 16:48:48 -0400 |
---|---|---|
committer | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-07-21 10:56:55 -0400 |
commit | ff6a5031d5ea509375a5dc1ee7b9eeddda6d9ebc (patch) | |
tree | 3112cd88285713a2b6a56e21c1502ae54f1ae847 /src/common/settings.cpp | |
parent | 07e8477f5a897730dd547d8b6af6d05db0cede81 (diff) |
settings: Require time zone setting value for stirng
Diffstat (limited to 'src/common/settings.cpp')
-rw-r--r-- | src/common/settings.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/settings.cpp b/src/common/settings.cpp index d9948dde87..78fa991134 100644 --- a/src/common/settings.cpp +++ b/src/common/settings.cpp @@ -66,8 +66,8 @@ SWITCHABLE(u8, true); Values values; -std::string GetTimeZoneString() { - const auto time_zone_index = static_cast<std::size_t>(values.time_zone_index.GetValue()); +std::string GetTimeZoneString(TimeZone time_zone) { + const auto time_zone_index = static_cast<std::size_t>(time_zone); ASSERT(time_zone_index < Common::TimeZone::GetTimeZoneStrings().size()); std::string location_name; |