Changed ArrayGetCell() to return the cell value instead of byreferencing the value.

This commit is contained in:
Steve Dudenhoeffer
2007-07-26 16:22:29 +00:00
parent 9ce9b142e7
commit 83c82387e3
2 changed files with 10 additions and 9 deletions

View File

@ -136,13 +136,14 @@ static cell AMX_NATIVE_CALL ArrayGetCell(AMX* amx, cell* params)
return 0;
}
if (vec->GetCell(params[2],get_amxaddr(amx, params[3]))!=1)
cell ret;
if (vec->GetCell(params[2],&ret)!=1)
{
LogError(amx, AMX_ERR_NATIVE, "Invalid cellvector handle provided (%d:%d:%d)", params[1], params[2], vec->Size());
return 0;
}
return 1;
return ret;
}
// ArrayGetString(Array:which, item, any:output[], size);
static cell AMX_NATIVE_CALL ArrayGetString(AMX* amx, cell* params)