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/stars/stars.c | |
parent | e0619c5dfa3bc90c2c241f8e330bf4a76a5a003d (diff) |
*: use fb_fragment_zero() instead of memset()
Diffstat (limited to 'src/modules/stars/stars.c')
-rw-r--r-- | src/modules/stars/stars.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/stars/stars.c b/src/modules/stars/stars.c index 0f6c2d5..2ff9b99 100644 --- a/src/modules/stars/stars.c +++ b/src/modules/stars/stars.c @@ -37,7 +37,7 @@ static void stars(fb_fragment_t *fragment) } // draw space (or blank the frame, if you prefer) - memset(fragment->buf, 0, ((fragment->width << 2) + fragment->stride) * fragment->height); + fb_fragment_zero(fragment); // draw stars for (;;) { |