diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2026-03-20 16:02:41 -0400 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2026-03-20 16:02:41 -0400 |
| commit | 061fa893eb46c1eac3d9de55f6ded86f33c9a281 (patch) | |
| tree | 2af696561f546013a17c96c6bc3155b683e19ccb /src/d/actor/d_a_lamp.cpp | |
| parent | 70a0a15b353605bee794a204248f53bcb057673e (diff) | |
Replace particle enums with official names
Diffstat (limited to 'src/d/actor/d_a_lamp.cpp')
| -rw-r--r-- | src/d/actor/d_a_lamp.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/d/actor/d_a_lamp.cpp b/src/d/actor/d_a_lamp.cpp index f67d77ac..1840d1d4 100644 --- a/src/d/actor/d_a_lamp.cpp +++ b/src/d/actor/d_a_lamp.cpp @@ -55,7 +55,7 @@ static BOOL daLamp_Execute(lamp_class* i_this) { if (!i_this->mParticleInit) { static cXyz fire_scale(0.5f, 0.5f, 0.5f); - dComIfGp_particle_set(dPa_name::ID_COMMON_01EA, &i_this->mPos, NULL, &fire_scale, 0xFF, &i_this->mPa); + dComIfGp_particle_set(dPa_name::ID_AK_JN_TORCH, &i_this->mPos, NULL, &fire_scale, 0xFF, &i_this->mPa); i_this->mParticleInit = 1; i_this->mParticlePower = 1.0f; } @@ -63,7 +63,7 @@ static BOOL daLamp_Execute(lamp_class* i_this) { if (i_this->mPa.getEmitter()) { cXyz whitePartPos = i_this->mPos; whitePartPos.y += 20.0f; - dComIfGp_particle_setSimple(dPa_name::ID_COMMON_4004, &whitePartPos); + dComIfGp_particle_setSimple(dPa_name::ID_AK_JP_O_KAGEROU00, &whitePartPos); cLib_addCalc2(&i_this->mParticlePower, cM_rndF(0.2f) + 1.0f, 0.5f, 0.02f); } else { i_this->mParticlePower = 0.0f; |
