Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ZUN changed absolutely nothing, let\'s wait for the full release #55

Merged
merged 5 commits into from
May 5, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion thdat/thdat.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ print_usage(
" -x extract an archive\n"
" -V display version information and exit\n"
"VERSION can be:\n"
" 1, 2, 3, 4, 5, 6, 7, 8, 9, 95, 10, 103 (for Uwabami Breakers), 105, 11, 12, 123, 125, 128, 13, 14, 143, 15, or 16\n"
" 1, 2, 3, 4, 5, 6, 7, 8, 9, 95, 10, 103 (for Uwabami Breakers), 105, 11, 12, 123, 125, 128, 13, 14, 143, 15, 16, 165 or 17\n"
"Specify 'd' as VERSION to automatically detect archive format. (-l and -x only)\n\n"
"Report bugs to <" PACKAGE_BUGREPORT ">.\n", argv0);
}
Expand Down
3 changes: 2 additions & 1 deletion thecl/thecl.c
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ print_usage(void)
" -m use map file for translating mnemonics\n"
" -r output raw ECL opcodes, applying minimal transformations\n"
"VERSION can be:\n"
" 6, 7, 8, 9, 95, 10, 103 (for Uwabami Breakers), 11, 12, 125, 128, 13, 14, 143, 15, 16, or 165\n"
" 6, 7, 8, 9, 95, 10, 103 (for Uwabami Breakers), 11, 12, 125, 128, 13, 14, 143, 15, 16, 165 or 17\n"
"Report bugs to <" PACKAGE_BUGREPORT ">.\n", argv0);
}

Expand Down Expand Up @@ -261,6 +261,7 @@ main(int argc, char* argv[])
case 15:
case 16:
case 165:
case 17:
module = &th10_ecl;
break;
default:
Expand Down
3 changes: 2 additions & 1 deletion thmsg/thmsg.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ print_usage(void)
" -V display version information and exit\n"
" -e extract or create ending dialogue\n"
"VERSION can be:\n"
" 6, 7, 8, 9, 95, 10, 11, 12, 125, 128, 13, 14, 143, 15, 16, or 165\n"
" 6, 7, 8, 9, 95, 10, 11, 12, 125, 128, 13, 14, 143, 15, 16, 165 or 17\n"
"Report bugs to <" PACKAGE_BUGREPORT ">.\n", argv0);
}

Expand Down Expand Up @@ -106,6 +106,7 @@ main(int argc, char* argv[])
case 15:
case 16:
case 165:
case 17:
module = &th06_msg;
break;
case 95:
Expand Down
3 changes: 2 additions & 1 deletion thstd/thstd.c
Original file line number Diff line number Diff line change
Expand Up @@ -782,7 +782,7 @@ print_usage(void)
" -c create STD file\n"
" -d dump STD file\n"
"VERSION can be:\n"
" 6, 7, 8, 9, 95, 10, 103 (for Uwabami Breakers), 11, 12, 125, 128, 13, 14, 143, 15, 16, or 165\n"
" 6, 7, 8, 9, 95, 10, 103 (for Uwabami Breakers), 11, 12, 125, 128, 13, 14, 143, 15, 16, 165 or 17\n"
"Report bugs to <" PACKAGE_BUGREPORT ">.\n");
}

Expand Down Expand Up @@ -844,6 +844,7 @@ main(
case 15:
case 16:
case 165:
case 17:
option_version = 2;
break;
default:
Expand Down
2 changes: 2 additions & 0 deletions thtk/thdat.c
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ thdat_version_to_module(
case 143:
case 15:
case 16:
case 165:
case 17:
return &archive_th95;
case 105:
case 123:
Expand Down