Do not sign-extend timestamps

This commit is contained in:
gdkchan 2018-03-10 20:51:55 -03:00
parent 3777fb44cf
commit 28275a8976
3 changed files with 6 additions and 6 deletions

View file

@ -258,9 +258,9 @@ namespace Ryujinx.Core.Input
}
}
private long GetTimestamp()
private static long GetTimestamp()
{
return Environment.TickCount * 19_200;
return (long)((ulong)Environment.TickCount * 19_200);
}
}
}