diff options
author | Vito Caputo <vcaputo@gnugeneration.com> | 2017-02-03 16:14:04 -0800 |
---|---|---|
committer | Vito Caputo <vcaputo@gnugeneration.com> | 2017-02-03 16:14:04 -0800 |
commit | b35ba71b6de341f7b87beb3bc078600f3d191612 (patch) | |
tree | c3a1ca2e8765498fbcc098736fcb3523e1224a39 /src/modules/sparkler/sparkler.c | |
parent | e0619c5dfa3bc90c2c241f8e330bf4a76a5a003d (diff) |
*: use fb_fragment_zero() instead of memset()
Diffstat (limited to 'src/modules/sparkler/sparkler.c')
-rw-r--r-- | src/modules/sparkler/sparkler.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/sparkler/sparkler.c b/src/modules/sparkler/sparkler.c index 0bb0fcf..e2ff76e 100644 --- a/src/modules/sparkler/sparkler.c +++ b/src/modules/sparkler/sparkler.c @@ -35,7 +35,7 @@ static void sparkler(fb_fragment_t *fragment) initialized = 1; } - memset(buf, 0, ((fragment->width << 2) + fragment->stride) * fragment->height); + fb_fragment_zero(fragment); particles_age(particles); particles_draw(particles, fragment); |