Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
iliazeus committed Oct 13, 2024
1 parent e1d6451 commit d1c67bc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ Arguments:
<DEST_DIR> A folder to write resulting GOD files to
Options:
--dry-run Do not convert anything, just print the title info
--game-title <GAME_TITLE> Set game title
--trim Trim off unused space from the ISO image
-h, --help Print help
-V, --version Print version
--dry-run Do not convert anything, just print the title info
--game-title <TITLE> Set game title
--trim Trim off unused space from the ISO image
-j, --num-threads <N> Number of worker threads to use
-h, --help Print help
-V, --version Print version
```
4 changes: 2 additions & 2 deletions src/bin/iso2god.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ struct Cli {
dry_run: bool,

/// Set game title
#[arg(long)]
#[arg(long, value_name = "TITLE")]
game_title: Option<String>,

/// Trim off unused space from the ISO image
#[arg(long)]
trim: bool,

/// Number of worker threads to use
#[arg(long, short = 'j')]
#[arg(long, short = 'j', value_name = "N")]
num_threads: Option<usize>,
}

Expand Down

0 comments on commit d1c67bc

Please sign in to comment.