Fix screwy indentation

This commit is contained in:
Alcaro 2017-05-18 11:51:57 +02:00
parent f3350286b3
commit dcdaec8e68

View File

@ -930,48 +930,48 @@ void usage()
GUIClaimConsole();
puts(
// 12345678901234567890123456789012345678901234567890123456789012345678901234567890
"usage:\n"
" "
"usage:\n"
" "
#ifndef FLIPS_CLI
"flips\n"
"or flips patch.ips\n"
"or "
"flips\n"
"or flips patch.ips\n"
"or "
#endif
"flips [--apply] [--exact] patch.bps rom.smc [outrom.smc]\n"
"or flips [--create] [--exact] [--bps | --bps-linear | --ips] clean.smc\n"
" hack.smc [patch.bps]\n"
"flips [--apply] [--exact] patch.bps rom.smc [outrom.smc]\n"
"or flips [--create] [--exact] [--bps | --bps-linear | --ips] clean.smc\n"
" hack.smc [patch.bps]\n"
#ifndef FLIPS_CLI
"(for scripting, only the latter two are sensible)\n"
"(for scripting, only the latter two are sensible)\n"
#endif
"(patch.ips is valid in all cases patch.bps is)\n"
"\n"
"(patch.ips is valid in all cases patch.bps is)\n"
"\n"
// 12345678901234567890123456789012345678901234567890123456789012345678901234567890
"options:\n"
"-a --apply: apply patch (default if given two arguments)\n"
"-c --create: create patch (default if given three arguments)\n"
"-I --info: BPSes contain information about input and output roms, print it\n"
//" also estimates how much of the source file is retained\n"
//" anything under 400 is fine, anything over 600 should be treated with suspicion\n"
"-i --ips, -b -B --bps --bps-delta, --bps-linear, --bps-delta-moremem:\n"
" create this patch format instead of guessing based on file extension\n"
" ignored when applying\n"
" bps formats:\n"
" delta is the recommended one; it's a good balance between creation time and\n"
" patch size\n"
" -b and -B both refer to this, for backwards compatibility reasons\n"
" delta-moremem is usually slightly faster than delta, but uses about twice\n"
" as much memory; it gives identical patches to delta\n"
" linear is the fastest, but tends to give pretty big patches\n"
"--exact: do not remove SMC headers when applying or creating a BPS patch\n"
" (ignored for IPS)\n"
"--ignore-checksum: accept checksum mismatches when applying a BPS patch\n"
"-m or --manifest: emit or insert a manifest file as romname.xml\n"
" (valid only for BPS)\n"
"-mfilename or --manifest=filename: emit or insert a manifest file exactly here\n"
"-h -? --help: show this information\n"
"-v --version: show application version\n"
"options:\n"
"-a --apply: apply patch (default if given two arguments)\n"
"-c --create: create patch (default if given three arguments)\n"
"-I --info: BPSes contain information about input and output roms, print it\n"
//" also estimates how much of the source file is retained\n"
//" anything under 400 is fine, anything over 600 should be treated with suspicion\n"
"-i --ips, -b -B --bps --bps-delta, --bps-linear, --bps-delta-moremem:\n"
" create this patch format instead of guessing based on file extension\n"
" ignored when applying\n"
" bps formats:\n"
" delta is the recommended one; it's a good balance between creation time and\n"
" patch size\n"
" -b and -B both refer to this, for backwards compatibility reasons\n"
" delta-moremem is usually slightly faster than delta, but uses about twice\n"
" as much memory; it gives identical patches to delta\n"
" linear is the fastest, but tends to give pretty big patches\n"
"--exact: do not remove SMC headers when applying or creating a BPS patch\n"
" (ignored for IPS)\n"
"--ignore-checksum: accept checksum mismatches when applying a BPS patch\n"
"-m or --manifest: emit or insert a manifest file as romname.xml\n"
" (valid only for BPS)\n"
"-mfilename or --manifest=filename: emit or insert a manifest file exactly here\n"
"-h -? --help: show this information\n"
"-v --version: show application version\n"
// 12345678901234567890123456789012345678901234567890123456789012345678901234567890
);
);
exit(0);
}