From a0e0745f2f4fa3e56bd01b4f825b6591a9db2469 Mon Sep 17 00:00:00 2001 From: Thog Date: Mon, 25 Nov 2019 00:32:07 +0100 Subject: [PATCH] Remove one extraneous incrementation (#833) This incrementation is entirely wrong. --- Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZone.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZone.cs b/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZone.cs index b32a97957..ca0efbfaf 100644 --- a/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZone.cs +++ b/Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZone.cs @@ -1707,7 +1707,7 @@ namespace Ryujinx.HLE.HOS.Services.Time.TimeZone Time = new CalendarTime() { Year = (short)calendarTime.Year, - Month = (sbyte)(calendarTime.Month + 1), + Month = calendarTime.Month, Day = calendarTime.Day, Hour = calendarTime.Hour, Minute = calendarTime.Minute,