Skip to content

Commit

Permalink
Set default compression to 5
Browse files Browse the repository at this point in the history
  • Loading branch information
RupertAvery committed Jan 14, 2020
1 parent 8c9a5b5 commit 1465a1c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion PSXPackager/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ public class Options
[Option('v', "verbose", Required = false, HelpText = "Set output to verbose messages.")]
public bool Verbose { get; set; }

[Option('l', "level", Required = false, HelpText = "Set compression level 0-9, default 9", Default = 9)]
[Option('l', "level", Required = false, HelpText = "Set compression level 0-9, default 5", Default = 5)]
public int CompressionLevel { get; set; }

[Option('o', "output", Required = true
Expand Down
2 changes: 1 addition & 1 deletion README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Since the 7zip library is being used, .7z, .rar, and .zip files are supported as

If the compressed file has multiple .bin files, PSXPackager will look for a .cue file and merge them into a single .bin file.

Set the compression level to a value from 0 to 9, with 0 being no compression and 9 being the highest compression level.
Set the compression level to a value from 0 to 9, with 0 being no compression and 9 being the highest compression level. If not specified, it will default to 5.

## Convert a .PBP to a .BIN

Expand Down

0 comments on commit 1465a1c

Please sign in to comment.