changeset 1615:2f8f2f7a42c8

Constify.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 15 May 2018 12:38:55 +0300
parents b2fe49401465
children 36d073c45327
files tools/libgfx.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/tools/libgfx.c	Tue May 15 12:35:55 2018 +0300
+++ b/tools/libgfx.c	Tue May 15 12:38:55 2018 +0300
@@ -1601,7 +1601,7 @@
 }
 
 
-void dmDecodeBitPlane(Uint8 *dp, Uint8 *src, const int width, const int nplane)
+void dmDecodeBitPlane(Uint8 *dp, const Uint8 *src, const int width, const int nplane)
 {
     for (int xc = 0; xc < width; xc++)
     {