[*] TODO: fix int on both platforms

This commit is contained in:
Reece Wilson 2024-08-01 13:33:36 +01:00
parent cc01b0557a
commit 67c4cdbee0

View File

@ -732,7 +732,7 @@ namespace Aurora::IO::Loop
AuInt64 deltaMS = 0;
if (time)
{
deltaMS = AuMin(AuInt64(4), (AuInt64)time - (AuInt64)AuTime::SteadyClockMS());
deltaMS = AuMin(AuInt64(150), (AuInt64)time - (AuInt64)AuTime::SteadyClockMS());
if (deltaMS < 0)
{
deltaMS = 0;