Added functions for smashing the stack and memory :)

This commit is contained in:
David Anderson
2006-01-06 14:22:12 +00:00
parent b46ee941d4
commit 0c745590ec
2 changed files with 33 additions and 0 deletions

View File

@ -395,6 +395,13 @@ size_t do_amx_format_parameter(AMX *amx, cell *params, const char **fmtstr, int
return _snprintf(output, maxlen, fmtptr, *(REAL *)addr);
break;
}
case 'p':
{
FMTPM_NEXTPARAM();
return _snprintf(output, maxlen, fmtptr, addr);
break;
}
case 'x':
case 'i':
case 'd':
case 'c':