Browse Source

Remove one extraneous incrementation (#833)

This incrementation is entirely wrong.
Thog 6 năm trước cách đây
mục cha
commit
a0e0745f2f
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      Ryujinx.HLE/HOS/Services/Time/TimeZone/TimeZone.cs

+ 1 - 1
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,