summaryrefslogtreecommitdiff
path: root/src/modules/sparkler/spark.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/sparkler/spark.c')
-rw-r--r--src/modules/sparkler/spark.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/modules/sparkler/spark.c b/src/modules/sparkler/spark.c
index ea68ac2..786be78 100644
--- a/src/modules/sparkler/spark.c
+++ b/src/modules/sparkler/spark.c
@@ -1,6 +1,7 @@
#include <stdlib.h>
#include "draw.h"
+#include "fb.h"
#include "particle.h"
#include "particles.h"
@@ -47,10 +48,15 @@ static void spark_draw(particles_t *particles, particle_t *p, int x, int y, fb_f
{
spark_ctxt_t *ctxt = p->ctxt;
- if (!draw_pixel(f, x, y, makergb(0xff, 0xa0, 0x20, ((float)ctxt->longevity / ctxt->lifetime)))) {
+ if (!fb_fragment_contains(f, x, y)) {
/* offscreen */
ctxt->longevity = 0;
+
+ return;
}
+
+ draw_pixel(f, x, y, makergb(0xff, 0xa0, 0x20, ((float)ctxt->longevity / ctxt->lifetime)));
+
}
© All Rights Reserved