diff tools/gfxconv.c @ 1696:cf0fddd4bf52

When writing a C64 bitmap output, inform the user about the output file size.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 05 Jun 2018 11:36:55 +0300
parents e568535e1a96
children a0986cfd6f9d
line wrap: on
line diff
--- a/tools/gfxconv.c	Tue Jun 05 11:07:44 2018 +0300
+++ b/tools/gfxconv.c	Tue Jun 05 11:36:55 2018 +0300
@@ -1069,7 +1069,9 @@
     }
 
     // And output the file
-    dmMsg(1, "Writing output file '%s'\n", filename);
+    dmMsg(1, "Writing output file '%s', %" DM_PRIu_SIZE_T " bytes.\n",
+        filename, buf.len);
+
     res = dmWriteDataFile(NULL, filename, buf.data, buf.len);
 
 error: