diff tools/gfxconv.c @ 940:ff18d2511843

Remove the doubleMC madness completely. Should be replaced with x/y aspect ratio information for display purposes.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 25 Feb 2015 22:01:23 +0200
parents 8fe48c08dbca
children 985225a93aeb
line wrap: on
line diff
--- a/tools/gfxconv.c	Wed Feb 25 21:26:26 2015 +0200
+++ b/tools/gfxconv.c	Wed Feb 25 22:01:23 2015 +0200
@@ -1709,7 +1709,7 @@
                 switch (optOutFormat)
                 {
                     case FFMT_IMAGE:
-                        res = dmC64ConvertBMP2Image(&outImage, cimage, cfmt, FALSE);
+                        res = dmC64ConvertBMP2Image(&outImage, cimage, cfmt);
 
                         if (res != DMERR_OK || outImage == NULL)
                         {
@@ -1727,7 +1727,7 @@
 
                     case FFMT_CHAR:
                     case FFMT_SPRITE:
-                        res = dmC64ConvertBMP2Image(&outImage, cimage, cfmt, TRUE);
+                        res = dmC64ConvertBMP2Image(&outImage, cimage, cfmt);
 
                         if (res != DMERR_OK || outImage == NULL)
                         {