fix mismatching datetime kind and timezone
This commit is contained in:
parent
3f4a0e7bfc
commit
87e986d755
1 changed files with 1 additions and 1 deletions
|
@ -205,7 +205,7 @@ namespace Ryujinx.HLE.OsHle.Services.Time
|
|||
byte Minute = Context.RequestData.ReadByte();
|
||||
byte Second = Context.RequestData.ReadByte();
|
||||
|
||||
DateTime CalendarTime = new DateTime(Year, Month, Day, Hour, Minute, Second, DateTimeKind.Local);
|
||||
DateTime CalendarTime = new DateTime(Year, Month, Day, Hour, Minute, Second);
|
||||
|
||||
if (BufferSize != 0x4000)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue