06.10.2013, 08:00
LeaveMe, the code up there does this:
amx->stk += 11;
whereas it should do this:
amx->stk += 12;
You have to account for the stack space used to allocated the last amx_Push call, so do
amx->stk += (12 * sizeof(cell));
amx->stk += 11;
whereas it should do this:
amx->stk += 12;
You have to account for the stack space used to allocated the last amx_Push call, so do
amx->stk += (12 * sizeof(cell));

