comparison tools/gfxconv.c @ 1280:300a51e98fc3

Bump version and copyright.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 18 Aug 2017 02:05:25 +0300
parents 5206e3d4e6b7
children 6c8b19d1d196
comparison
equal deleted inserted replaced
1279:0d3f5f44c0c4 1280:300a51e98fc3
1 /* 1 /*
2 * gfxconv - Convert various graphics formats 2 * gfxconv - Convert various graphics formats
3 * Programmed and designed by Matti 'ccr' Hamalainen 3 * Programmed and designed by Matti 'ccr' Hamalainen
4 * (C) Copyright 2012-2014 Tecnic Software productions (TNSP) 4 * (C) Copyright 2012-2017 Tecnic Software productions (TNSP)
5 * 5 *
6 * Please read file 'COPYING' for information on license and distribution. 6 * Please read file 'COPYING' for information on license and distribution.
7 */ 7 */
8 #include "dmlib.h" 8 #include "dmlib.h"
9 #include "dmargs.h" 9 #include "dmargs.h"
1565 // Default colors 1565 // Default colors
1566 for (i = 0; i < C64_MAX_COLORS; i++) 1566 for (i = 0; i < C64_MAX_COLORS; i++)
1567 optColors[i] = i; 1567 optColors[i] = i;
1568 1568
1569 // Initialize and parse commandline 1569 // Initialize and parse commandline
1570 dmInitProg("gfxconv", "Simple graphics converter", "0.90", NULL, NULL); 1570 dmInitProg("gfxconv", "Simple graphics converter", "0.91", NULL, NULL);
1571 1571
1572 if (!dmArgsProcess(argc, argv, optList, optListN, 1572 if (!dmArgsProcess(argc, argv, optList, optListN,
1573 argHandleOpt, argHandleFile, OPTH_BAILOUT)) 1573 argHandleOpt, argHandleFile, OPTH_BAILOUT))
1574 exit(1); 1574 exit(1);
1575 1575