# HG changeset patch # User Matti Hamalainen # Date 1702963225 -7200 # Node ID d683f47e4dd99315b9a1d55e4c955f583d87b704 # Parent 17679e05c63bf7147e8da492401f09c9f2662047 Constify. diff -r 17679e05c63b -r d683f47e4dd9 tools/gfxconv.c --- a/tools/gfxconv.c Thu Nov 30 03:07:24 2023 +0200 +++ b/tools/gfxconv.c Tue Dec 19 07:20:25 2023 +0200 @@ -2276,7 +2276,7 @@ } -int dmWriteSpritesAndChars(const char *filename, DMImage *image, int outFormat, const bool multicolor) +int dmWriteSpritesAndChars(const char *filename, DMImage *image, const int outFormat, const bool multicolor) { int ret = DMERR_OK; int outBlockW, outBlockH, bx, by;