From 21af4b9e9cc2fb462e08f8702e1b6caf555c90d3 Mon Sep 17 00:00:00 2001 From: Thog Date: Mon, 25 Nov 2019 00:24:24 +0100 Subject: [PATCH] Remove one extraneous incrementation 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 b32a979578..ca0efbfaf9 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,