Fixed a bug where remove_task() crashed

amxx_mm -> amxmodx_mm
This commit is contained in:
David Anderson 2004-08-31 06:49:22 +00:00
parent 4fff936626
commit 0b2eae8e0a
2 changed files with 5 additions and 2 deletions

View File

@ -75,7 +75,10 @@ void CTaskMngr::CTask::clear()
{
m_bFree = true;
if (m_pParams)
{
delete [] m_pParams;
m_pParams = NULL;
}
}
bool CTaskMngr::CTask::isFree() const

View File

@ -13,7 +13,7 @@
# proc=ix86 - assumed not amd64
# clean - clean the specifications above
$PROJECT = "amxx_mm";
$PROJECT = "amxmodx_mm";
$sdk = "../hlsdk/SourceCode";
$mm = "../metamod/metamod";