Unsigned comparison

This commit is contained in:
gdkchan 2018-07-03 18:38:40 -03:00
parent a47f129818
commit c88e942362

View file

@ -327,7 +327,7 @@ namespace Ryujinx.HLE.OsHle
for (int Index = Executables.Count - 1; Index >= 0; Index--) for (int Index = Executables.Count - 1; Index >= 0; Index--)
{ {
if (Position >= Executables[Index].ImageBase) if ((ulong)Position >= (ulong)Executables[Index].ImageBase)
{ {
return Executables[Index]; return Executables[Index];
} }