# HG changeset patch # User Matti Hamalainen # Date 1528187815 -10800 # Node ID cf0fddd4bf52d8cddb8c0b69bec16914c9b3d411 # Parent ce3e56cfa9b94e436469922e609797d4206554db When writing a C64 bitmap output, inform the user about the output file size. diff -r ce3e56cfa9b9 -r cf0fddd4bf52 tools/gfxconv.c --- 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: