mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-08-16 12:24:45 -04:00
Isolate JKRHeap operator overloads
Fixes #25 This isolates the JKRHeap operator new/delete overloads. Every single new/delete site in the code has been replaced with a macro. Sadly for new[] and delete[] we have to keep global operators. The global new[] just allocates into malloc() however, and delete[] goes into free() if it's not in a JKRHeap. So that's fine.
This commit is contained in:
@@ -61,14 +61,14 @@ static int const l_nan_btk_index[2] = {
|
||||
inline int daObjNAN_c::CreateHeap() {
|
||||
J3DModelData* modelData = (J3DModelData*)dComIfG_getObjectRes("I_Nan", 9);
|
||||
JUT_ASSERT(254, modelData != NULL);
|
||||
mMorf = new mDoExt_McaMorfSO(modelData, NULL, NULL,
|
||||
mMorf = JKR_NEW mDoExt_McaMorfSO(modelData, NULL, NULL,
|
||||
(J3DAnmTransform*)dComIfG_getObjectRes("I_Nan", 6), 2, 1.0f,
|
||||
0, -1, &mCreatureSound, 0, 0x11000284);
|
||||
if (mMorf == NULL || mMorf->getModel() == NULL) {
|
||||
return 0;
|
||||
}
|
||||
J3DModel* model = mMorf->getModel();
|
||||
mBrk = new mDoExt_brkAnm();
|
||||
mBrk = JKR_NEW mDoExt_brkAnm();
|
||||
if (mBrk == NULL) {
|
||||
return 0;
|
||||
}
|
||||
@@ -77,7 +77,7 @@ inline int daObjNAN_c::CreateHeap() {
|
||||
if (mBrk->init(model->getModelData(), anmRegKey, 1, 2, 1.0f, 0, -1) == 0) {
|
||||
return 0;
|
||||
}
|
||||
mBtk = new mDoExt_btkAnm();
|
||||
mBtk = JKR_NEW mDoExt_btkAnm();
|
||||
if (mBtk == NULL) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user