diff tools/libgfx.c @ 1814:0b7062d874ef

Use dmMemset() instead of memset().
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 21 Jun 2018 17:22:32 +0300
parents c9197a038e8e
children fe15412eec10
line wrap: on
line diff
--- a/tools/libgfx.c	Thu Jun 21 13:07:44 2018 +0300
+++ b/tools/libgfx.c	Thu Jun 21 17:22:32 2018 +0300
@@ -1333,7 +1333,7 @@
                 break;
 
             case 1:
-                memset(dp, 0, img->width);
+                dmMemset(dp, 0, img->width);
 
                 for (int nplane = 0; nplane < hdr.nplanes; nplane++)
                 {