Fix BinarySearchLt to return less than rather than less than or equal value

This commit is contained in:
gdkchan 2018-08-21 02:25:40 -03:00
parent afc44850be
commit 98e9e18e27

View file

@ -187,7 +187,10 @@ namespace Ryujinx.HLE.HOS.Services.Nv.NvGpuAS
{
Left = Middle + 1;
LtRg = Rg;
if ((ulong)Position > Rg.Start)
{
LtRg = Rg;
}
}
}