[*] Fix TryWaitOnAddressSpecialEx from UntilEqual -> Special update

This commit is contained in:
Reece Wilson 2024-03-24 15:30:38 +00:00
parent 683e383095
commit 1fa12f141f

View File

@ -1227,7 +1227,7 @@ namespace Aurora::Threading
{
return Primitives::DoTryIf([&]()
{
if (!WaitBuffer::Compare2<T, true>(pTargetAddress, uWordSize, pCompareAddress))
if (WaitBuffer::Compare2<T, true>(pTargetAddress, uWordSize, pCompareAddress))
{
return false;
}