comparison tools/gfxconv.c @ 2236:57ccd949093f

Show the default chargen/character ROM file path in help.
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 15 Jun 2019 06:19:34 +0300
parents ba5141771d9a
children 26f1bae40fb6
comparison
equal deleted inserted replaced
2235:9c4f69fcb4b1 2236:57ccd949093f
230 void argShowHelp() 230 void argShowHelp()
231 { 231 {
232 dmPrintBanner(stdout, dmProgName, "[options] <input file>"); 232 dmPrintBanner(stdout, dmProgName, "[options] <input file>");
233 dmArgsPrintHelp(stdout, optList, optListN, 0); 233 dmArgsPrintHelp(stdout, optList, optListN, 0);
234 234
235 printf( 235 fprintf(stdout,
236 "\n" 236 "\n"
237 "Output image scaling (-S)\n" 237 "Output image scaling (-S)\n"
238 "-------------------------\n" 238 "-------------------------\n"
239 "Scaling option '-S <n>', '-S <x>:<y>', '-S <x>:<y>*<n>' can be used to set\n" 239 "Scaling option '-S <n>', '-S <x>:<y>', '-S <x>:<y>*<n>' can be used to set\n"
240 "the direct or relative scale integer factor(s). '-S <n>' sets both height\n" 240 "the direct or relative scale integer factor(s). '-S <n>' sets both height\n"
272 "The numbers are palette indexes, and the order is for bit(pair)-values\n" 272 "The numbers are palette indexes, and the order is for bit(pair)-values\n"
273 "00, 01, 10, 11 (multi color) and 0, 1 (single color). NOTICE! 255 is the\n" 273 "00, 01, 10, 11 (multi color) and 0, 1 (single color). NOTICE! 255 is the\n"
274 "special transparency color index; -m 255,2 would use transparency for\n" 274 "special transparency color index; -m 255,2 would use transparency for\n"
275 "'0' bits and and C64 color 2 for '1' bits.\n" 275 "'0' bits and and C64 color 2 for '1' bits.\n"
276 "\n" 276 "\n"
277 "Default character ROM file for this build is:\n"
278 "%s\n",
279 DM_DEF_CHARGEN
277 ); 280 );
278 } 281 }
279 282
280 283
281 /* Replace filename extension based on format pattern. 284 /* Replace filename extension based on format pattern.