# HG changeset patch # User Matti Hamalainen # Date 1503011125 -10800 # Node ID 300a51e98fc39e5f53df48ed2c62ae982cefb983 # Parent 0d3f5f44c0c4168d672a72cd461e795f111689fa Bump version and copyright. diff -r 0d3f5f44c0c4 -r 300a51e98fc3 src/libgfx.c --- a/src/libgfx.c Fri Aug 18 02:03:15 2017 +0300 +++ b/src/libgfx.c Fri Aug 18 02:05:25 2017 +0300 @@ -1092,6 +1092,18 @@ } break; +/* + case 1: + for (int nplane = 0; nplane < hdr.nplanes; nplane++) + { + Uint8 *dptr = dp, + *sptr = pcx.buf + (hdr.bpl * nplane); + + for (int xc = 0; xc < img->width; xc++) + } + break; +*/ + default: res = dmError(DMERR_INVALID_DATA, "PCX: Unsupported number of bits per plane %d.\n", diff -r 0d3f5f44c0c4 -r 300a51e98fc3 tools/gfxconv.c --- a/tools/gfxconv.c Fri Aug 18 02:03:15 2017 +0300 +++ b/tools/gfxconv.c Fri Aug 18 02:05:25 2017 +0300 @@ -1,7 +1,7 @@ /* * gfxconv - Convert various graphics formats * Programmed and designed by Matti 'ccr' Hamalainen - * (C) Copyright 2012-2014 Tecnic Software productions (TNSP) + * (C) Copyright 2012-2017 Tecnic Software productions (TNSP) * * Please read file 'COPYING' for information on license and distribution. */ @@ -1567,7 +1567,7 @@ optColors[i] = i; // Initialize and parse commandline - dmInitProg("gfxconv", "Simple graphics converter", "0.90", NULL, NULL); + dmInitProg("gfxconv", "Simple graphics converter", "0.91", NULL, NULL); if (!dmArgsProcess(argc, argv, optList, optListN, argHandleOpt, argHandleFile, OPTH_BAILOUT))