This commit is contained in:
Borja Ferrer 2006-08-19 20:21:00 +00:00
parent b572cdff2f
commit e7cc87a610

View File

@ -21,7 +21,7 @@ int LookupFile(AMX_DBG *amxdbg, ucell address)
while (high - low > 1) while (high - low > 1)
{ {
mid = USHR(low + high); mid = USHR(low + high);
if (amxdbg->filetbl[mid]->address < address) if (amxdbg->filetbl[mid]->address <= address)
{ {
low = mid; low = mid;
} else { } else {