From 2c987b02110a8929208fb8cdb5492c2c8c1ef51d Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Fri, 1 May 2026 00:17:51 -0700 Subject: [PATCH] build fix --- libs/JSystem/src/JParticle/JPAParticle.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/JSystem/src/JParticle/JPAParticle.cpp b/libs/JSystem/src/JParticle/JPAParticle.cpp index 5ad418c108..e75cb260d0 100644 --- a/libs/JSystem/src/JParticle/JPAParticle.cpp +++ b/libs/JSystem/src/JParticle/JPAParticle.cpp @@ -273,7 +273,7 @@ bool JPABaseParticle::calc_p(JPAEmitterWorkData* work) { work->mRotType = pBsp->getRotType(); work->mDLType = pBsp->getType() == 4 || pBsp->getType() == 8; work->mPlaneType = work->mDLType ? 2 : pBsp->getBasePlaneType(); - interp(work, work->mpRes->mpDrawParticleFuncList[0]); + interp(work, (void const*)work->mpRes->mpDrawParticleFuncList[0]); #endif return false; @@ -332,7 +332,7 @@ bool JPABaseParticle::calc_c(JPAEmitterWorkData* work) { work->mRotType = pCsp->getRotType(); work->mDLType = pCsp->getType() == 4 || pCsp->getType() == 8; work->mPlaneType = work->mDLType ? 2 : pCsp->getBasePlaneType(); - interp(work, work->mpRes->mpDrawParticleChildFuncList[0]); + interp(work, (void const*)work->mpRes->mpDrawParticleChildFuncList[0]); #endif return false;