summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/time
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-01-20 20:20:32 +0100
committerbunnei <bunneidev@gmail.com>2020-01-20 20:20:32 +0100
commit7113236b304fb168610ed5377223616939967dca (patch)
treece8b9f4f0f8cad35a352c27c81e04c059dc274ee /src/core/hle/service/time
parentMerge pull request #3332 from bunnei/config-audio-tab (diff)
downloadyuzu-7113236b304fb168610ed5377223616939967dca.tar
yuzu-7113236b304fb168610ed5377223616939967dca.tar.gz
yuzu-7113236b304fb168610ed5377223616939967dca.tar.bz2
yuzu-7113236b304fb168610ed5377223616939967dca.tar.lz
yuzu-7113236b304fb168610ed5377223616939967dca.tar.xz
yuzu-7113236b304fb168610ed5377223616939967dca.tar.zst
yuzu-7113236b304fb168610ed5377223616939967dca.zip
Diffstat (limited to 'src/core/hle/service/time')
-rw-r--r--src/core/hle/service/time/time_zone_manager.cpp4
1 files changed, 2 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 4db6d7ad3..717e81818 100644
--- a/src/core/hle/service/time/time_zone_manager.cpp
+++ b/src/core/hle/service/time/time_zone_manager.cpp
@@ -820,7 +820,7 @@ static ResultCode ToCalendarTimeImpl(const TimeZoneRule& rules, s64 time, Calend
const ResultCode result{
ToCalendarTimeInternal(rules, time, calendar_time, calendar.additiona_info)};
calendar.time.year = static_cast<s16>(calendar_time.year);
- calendar.time.month = calendar_time.month;
+ calendar.time.month = calendar_time.month + 1; // Internal impl. uses 0-indexed month
calendar.time.day = calendar_time.day;
calendar.time.hour = calendar_time.hour;
calendar.time.minute = calendar_time.minute;
@@ -874,7 +874,7 @@ ResultCode TimeZoneManager::ToPosixTime(const TimeZoneRule& rules,
CalendarTimeInternal internal_time{};
internal_time.year = calendar_time.year;
- internal_time.month = calendar_time.month;
+ internal_time.month = calendar_time.month - 1; // Internal impl. uses 0-indexed month
internal_time.day = calendar_time.day;
internal_time.hour = calendar_time.hour;
internal_time.minute = calendar_time.minute;