Fix BinarySearchLt to return less than rather than less than or equal value (#372)

metal
gdkchan 2018-08-23 01:54:59 -03:00 committed by GitHub
parent 1cd7aaf504
commit 9977acad0f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

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;
}
}
}