Unsigned comparison
This commit is contained in:
parent
a47f129818
commit
c88e942362
1 changed files with 1 additions and 1 deletions
|
@ -327,7 +327,7 @@ namespace Ryujinx.HLE.OsHle
|
|||
|
||||
for (int Index = Executables.Count - 1; Index >= 0; Index--)
|
||||
{
|
||||
if (Position >= Executables[Index].ImageBase)
|
||||
if ((ulong)Position >= (ulong)Executables[Index].ImageBase)
|
||||
{
|
||||
return Executables[Index];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue