Assign unused constructor parameter

This commit is contained in:
Kawe Mazidjatari 2023-04-16 01:23:38 +02:00
parent 4827a3cc84
commit b8035120de

View File

@ -28,7 +28,7 @@ CTraceFilterSimple::CTraceFilterSimple(const IHandleEntity* pPassEntity, int col
void** pVTable = reinterpret_cast<void**>(&*this); // Assign vftable pointer to the implementation supplied by the engine.
*pVTable = reinterpret_cast<void*>(g_pTraceFilterSimpleVFTable);
m_collisionGroup = 0;
m_collisionGroup = collisionGroup;
m_pPassEntity = pPassEntity;
m_traceType = 0;
m_pExtraShouldHitCheckFunction = pExtraShouldHitCheckFn;