fix array count

This commit is contained in:
emmauss 2018-08-11 16:24:52 +00:00 committed by GitHub
parent c2ca00b6ac
commit 3f4a0e7bfc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -259,9 +259,7 @@ namespace Ryujinx.HLE.OsHle.Services.Time
Context.Memory.WriteInt64(Position, PosixTime);
int Count = BitConverter.GetBytes(PosixTime).Length;
Context.ResponseData.Write(Count);
Context.ResponseData.Write(1);
return 0;
}