Linux build fix (bug 3520 fallout).

This commit is contained in:
David Anderson 2010-01-11 22:50:44 -08:00
parent 18865c44c8
commit 1cbe996831

View File

@ -150,9 +150,7 @@ static cell_t smn_GameConfGetAddress(IPluginContext *pCtx, const cell_t *params)
pCtx->LocalToString(params[2], &key);
if (!gc->GetAddress(key, &val))
{
return NULL;
}
return 0;
return (cell_t)val;
}