Unify usage strings/functions across programs.

The funny spacing is to make it easier to keep to 80 characters/line.
This commit is contained in:
Anthony J. Bentley
2015-01-07 23:13:18 -07:00
parent bdc6401eba
commit 8534f3a148
3 changed files with 15 additions and 14 deletions

View File

@@ -26,10 +26,10 @@
static void
usage(void)
{
printf("usage: rgbfix [-Ccjsv] [-i game_id] [-k licensee_str] "
"[-l licensee_id]\n" " [-m mbc_type] [-n rom_version] "
"[-p pad_value] [-r ram_size]\n"
" [-t title_str] file.gb\n");
printf(
"usage: rgbfix [-Ccjsv] [-i game_id] [-k licensee_str] [-l licensee_id]\n"
" [-m mbc_type] [-n rom_version] [-p pad_value] [-r ram_size]\n"
" [-t title_str] file\n");
exit(1);
}