diff options
Diffstat (limited to 'src/powder.c')
| -rw-r--r-- | src/powder.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/powder.c b/src/powder.c index 3acad8e..0fa16c9 100644 --- a/src/powder.c +++ b/src/powder.c @@ -1935,11 +1935,11 @@ void update_particles_i(pixel *vid, int start, int inc) //call the particle update function, if there is one if (ptypes[t].update_func) { - if ((*(ptypes[t].update_func))(i,x,y,surround_space)) + if ((*(ptypes[t].update_func))(i,x,y,surround_space,nt)) continue; } if (legacy_enable)//if heat sim is off - update_legacy_all(i,x,y,surround_space); + update_legacy_all(i,x,y,surround_space,nt); killed: if (parts[i].type == PT_NONE)//if its dead, skip to next particle |
