comparison tools/gfxconv.c @ 2223:5477e792def3

Remove useless DMC64ImageFormat parameter from some conversion functions.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 14 Jun 2019 12:12:19 +0300
parents 80cc4ac6d876
children 6037ba60730a
comparison
equal deleted inserted replaced
2222:75b5bb490f38 2223:5477e792def3
2225 goto exit; 2225 goto exit;
2226 } 2226 }
2227 } 2227 }
2228 2228
2229 // Convert the image 2229 // Convert the image
2230 res = dmC64ConvertBMP2Image(&outImage, inC64Image, inC64Fmt, &optC64Spec); 2230 res = dmC64ConvertBMP2Image(&outImage, inC64Image, &optC64Spec);
2231 2231
2232 if (res != DMERR_OK || outImage == NULL) 2232 if (res != DMERR_OK || outImage == NULL)
2233 { 2233 {
2234 dmErrorMsg("Error in bitmap to image conversion.\n"); 2234 dmErrorMsg("Error in bitmap to image conversion.\n");
2235 goto exit; 2235 goto exit;