chore(memory): remove single arg SMemFree

This commit is contained in:
Adam Heinermann 2025-10-07 02:52:35 -07:00 committed by fallenoak
parent 51b200da0d
commit 47d903f4ac
7 changed files with 14 additions and 28 deletions

View file

@ -37,7 +37,7 @@ uint32_t S_Thread::s_SLaunchThread(void* threadParam) {
pthread_cond_signal(&params->syncObject->m_cond);
}
SMemFree(threadParam);
STORM_FREE(threadParam);
return 0;
}