[*] NT build regression from Linux land

This commit is contained in:
Reece Wilson 2022-05-13 15:07:53 +01:00
parent 23e922a396
commit ede223e955

View File

@ -13,8 +13,8 @@ namespace Aurora::Loop
bool WaitSingleBase::IsSignaled()
{
bool val {};
AuUInt one {-1};
AuUInt two {-1};
AuUInt one {AuNumericLimits<AuUInt>::max()};
AuUInt two {AuNumericLimits<AuUInt>::max()};
this->OnPresleep();
if (this->Singular())
@ -57,8 +57,8 @@ namespace Aurora::Loop
bool WaitSingleBase::WaitOn(AuUInt32 timeout)
{
bool val {};
AuUInt one {-1};
AuUInt two {-1};
AuUInt one {AuNumericLimits<AuUInt>::max()};
AuUInt two {AuNumericLimits<AuUInt>::max()};
this->OnPresleep();
if (this->Singular())