mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-15 09:35:27 +00:00
Fix BinarySearchLt to return less than rather than less than or equal value (#372)
This commit is contained in:
parent
1cd7aaf504
commit
9977acad0f
|
@ -187,7 +187,10 @@ namespace Ryujinx.HLE.HOS.Services.Nv.NvGpuAS
|
|||
{
|
||||
Left = Middle + 1;
|
||||
|
||||
LtRg = Rg;
|
||||
if ((ulong)Position > Rg.Start)
|
||||
{
|
||||
LtRg = Rg;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue