diff options
| author | 2020-08-14 10:58:55 -0400 | |
|---|---|---|
| committer | 2020-08-14 10:58:58 -0400 | |
| commit | b14277ef971e1071a39dd604d34643e597284a8d (patch) | |
| tree | ce75d5f27131b01f1bbdfe11b042334a2c74bb14 | |
| parent | Merge pull request #4495 from lioncash/conv (diff) | |
| download | yuzu-b14277ef971e1071a39dd604d34643e597284a8d.tar.gz yuzu-b14277ef971e1071a39dd604d34643e597284a8d.tar.xz yuzu-b14277ef971e1071a39dd604d34643e597284a8d.zip | |
time_zone_content_manager: Collapse auto and default case
Prevents a useless self-assignment from occurring.
Diffstat (limited to '')
| -rw-r--r-- | src/core/hle/service/time/time_zone_content_manager.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/core/hle/service/time/time_zone_content_manager.cpp b/src/core/hle/service/time/time_zone_content_manager.cpp index c070d6e97..320672add 100644 --- a/src/core/hle/service/time/time_zone_content_manager.cpp +++ b/src/core/hle/service/time/time_zone_content_manager.cpp | |||
| @@ -73,10 +73,8 @@ TimeZoneContentManager::TimeZoneContentManager(TimeManager& time_manager, Core:: | |||
| 73 | 73 | ||
| 74 | std::string location_name; | 74 | std::string location_name; |
| 75 | const auto timezone_setting = Settings::GetTimeZoneString(); | 75 | const auto timezone_setting = Settings::GetTimeZoneString(); |
| 76 | if (timezone_setting == "auto") { | 76 | if (timezone_setting == "auto" || timezone_setting == "default") { |
| 77 | location_name = Common::TimeZone::GetDefaultTimeZone(); | 77 | location_name = Common::TimeZone::GetDefaultTimeZone(); |
| 78 | } else if (timezone_setting == "default") { | ||
| 79 | location_name = location_name; | ||
| 80 | } else { | 78 | } else { |
| 81 | location_name = timezone_setting; | 79 | location_name = timezone_setting; |
| 82 | } | 80 | } |