diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2019-05-07 10:50:18 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2019-05-07 10:50:18 +0200 |
commit | cb5939f66ea7722539e1ae9e4df5d643dbe14342 (patch) | |
tree | 2ff2ff419c755e00e8cd16ef0d83b087810db4e4 /src | |
parent | 6c8f4fac8cabca6d5f6d57982422e5009deb2bf9 (diff) | |
download | AsciiMap-cb5939f66ea7722539e1ae9e4df5d643dbe14342.tar.gz |
Fixed help text
Diffstat (limited to 'src')
-rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -226,7 +226,7 @@ void print_help( void ) printf("ASCIIMap prints a ASCII representation of a bitmap image\n\nUsage: [OPTIONS] FILENAME\n"); printf("Options:\n -h: Print this help message\n -x VAL: set the width of block wich makes up one character. Default: %i\n", CHAR_SIZE_X); printf(" -y VAL: set the height of block wich makes up one character. Default: 2*x\n -c: Print in ANSI color mode. Default: OFF\n"); - printf(" -i: Read from STDIN instead of file. The provided filename will be ignored.\n"); + printf(" -i: Read from STDIN instead of file.\n"); } |