changeset 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 ce3e56cfa9b9
children 1036b0dcccb5
files tools/gfxconv.c
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
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: