mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-07-01 08:39:04 +00:00
Do not sign-extend timestamps
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user