comparison tools/gfxconv.c @ 1439:c1dee757de9d

Constify.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 10 May 2018 02:24:41 +0300
parents d8a83582f78f
children a602488830fc
comparison
equal deleted inserted replaced
1438:40797bfd35bf 1439:c1dee757de9d
1029 dmFree(used); 1029 dmFree(used);
1030 return DMERR_OK; 1030 return DMERR_OK;
1031 } 1031 }
1032 1032
1033 1033
1034 int dmWriteBitmap(const char *filename, DMC64Image *image, int iformat, BOOL enableFixUps) 1034 int dmWriteBitmap(const char *filename, const DMC64Image *image, const int iformat, const BOOL enableFixUps)
1035 { 1035 {
1036 FILE *outFile = NULL; 1036 FILE *outFile = NULL;
1037 Uint8 *buf = NULL; 1037 Uint8 *buf = NULL;
1038 size_t bufSize; 1038 size_t bufSize;
1039 int res = DMERR_OK; 1039 int res = DMERR_OK;