summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlat9nq <22451773+lat9nq@users.noreply.github.com>2023-06-20 21:52:17 +0200
committerlat9nq <22451773+lat9nq@users.noreply.github.com>2023-06-20 21:54:28 +0200
commitae1a8a7dc7bbe656d9abac646472df2ccf1660db (patch)
tree7e08b8bfed33d9cf183086a86140d81805877a89
parenttime_zone_manager: Stop on comma (diff)
downloadyuzu-ae1a8a7dc7bbe656d9abac646472df2ccf1660db.tar
yuzu-ae1a8a7dc7bbe656d9abac646472df2ccf1660db.tar.gz
yuzu-ae1a8a7dc7bbe656d9abac646472df2ccf1660db.tar.bz2
yuzu-ae1a8a7dc7bbe656d9abac646472df2ccf1660db.tar.lz
yuzu-ae1a8a7dc7bbe656d9abac646472df2ccf1660db.tar.xz
yuzu-ae1a8a7dc7bbe656d9abac646472df2ccf1660db.tar.zst
yuzu-ae1a8a7dc7bbe656d9abac646472df2ccf1660db.zip
-rw-r--r--src/core/hle/service/time/time_zone_manager.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/hle/service/time/time_zone_manager.cpp b/src/core/hle/service/time/time_zone_manager.cpp
index 43d0a19b8..205371a26 100644
--- a/src/core/hle/service/time/time_zone_manager.cpp
+++ b/src/core/hle/service/time/time_zone_manager.cpp
@@ -911,11 +911,13 @@ static Result ToCalendarTimeInternal(const TimeZoneRule& rules, s64 time,
calendar_additional_info.is_dst = rules.ttis[tti_index].is_dst;
const char* time_zone{&rules.chars[rules.ttis[tti_index].abbreviation_list_index]};
- for (u32 index{}; time_zone[index] != '\0' && time_zone[index] != ',' &&
- index < calendar_additional_info.timezone_name.size() - 1;
+ u32 index;
+ for (index = 0; time_zone[index] != '\0' && time_zone[index] != ',' &&
+ index < calendar_additional_info.timezone_name.size() - 1;
++index) {
calendar_additional_info.timezone_name[index] = time_zone[index];
}
+ calendar_additional_info.timezone_name[index] = '\0';
return ResultSuccess;
}