diff options
Diffstat (limited to 'src/code/z_effect_soft_sprite.c')
| -rw-r--r-- | src/code/z_effect_soft_sprite.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/code/z_effect_soft_sprite.c b/src/code/z_effect_soft_sprite.c index 802ac59f2..50b492128 100644 --- a/src/code/z_effect_soft_sprite.c +++ b/src/code/z_effect_soft_sprite.c @@ -225,7 +225,7 @@ void EffectSS_UpdateParticle(GlobalContext* ctxt, s32 index) { particle->pos.y += particle->velocity.y; particle->pos.z += particle->velocity.z; - (*particle->update)(ctxt, index, particle); + particle->update(ctxt, index, particle); } } @@ -250,7 +250,7 @@ void EffectSS_UpdateAllParticles(GlobalContext* ctxt) { void EffectSS_DrawParticle(GlobalContext* ctxt, s32 index) { EffectSs* entry = &EffectSS2Info.data_table[index]; if (entry->draw != 0) { - (*entry->draw)(ctxt, index, entry); + entry->draw(ctxt, index, entry); } } |
