mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-08-15 20:15:32 -04:00
Fix multiple classes being inappropriately zero-initialized via JKR_NEW* (#70)
This might also fix #71 and #72.
This commit is contained in:
@@ -35,7 +35,7 @@ JPAEmitterManager::JPAEmitterManager(u32 i_ptclNum, u32 i_emtrNum, JKRHeap* pHea
|
||||
pResMgrAry[i] = NULL;
|
||||
}
|
||||
|
||||
pWd = JKR_NEW_ARGS (pHeap, 0) JPAEmitterWorkData();
|
||||
pWd = JKR_NEW_ARGS (pHeap, 0) JPAEmitterWorkData;
|
||||
JUT_ASSERT(67, pWd);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user