# HG changeset patch # User Matti Hamalainen # Date 1530414303 -10800 # Node ID 02b216fae7d56403f5ad427e7758d7f9e2432e25 # Parent 2cf79254b8e4c19d33b3344f592764c8d9a356b2 Add d020/d021 bgcolor to dmC64ImageDump() printout. diff -r 2cf79254b8e4 -r 02b216fae7d5 tools/lib64gfx.c --- a/tools/lib64gfx.c Sun Jul 01 04:53:17 2018 +0300 +++ b/tools/lib64gfx.c Sun Jul 01 06:05:03 2018 +0300 @@ -85,9 +85,13 @@ fprintf(fh, "%sWidth x Height : %d x %d\n" - "%sCHwidth x CHheight : %d x %d\n", + "%sCHwidth x CHheight : %d x %d\n" + "%sd020 / border : %d ($%02x)\n" + "%sd021 / background : %d ($%02x)\n", indent, img->fmt->width, img->fmt->height, - indent, img->fmt->chWidth, img->fmt->chHeight); + indent, img->fmt->chWidth, img->fmt->chHeight, + indent, img->d020, img->d020, + indent, img->bgcolor, img->bgcolor); } else if (fmt != NULL)