Skip to content

Commit

Permalink
Fix RVZ GC junk data generation
Browse files Browse the repository at this point in the history
  • Loading branch information
encounter committed Feb 27, 2024
1 parent 8bd52d4 commit ad1ec58
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion nod/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nod"
version = "1.1.0"
version = "1.1.1"
edition = "2021"
rust-version = "1.73.0"
authors = ["Luke Street <[email protected]>"]
Expand Down
4 changes: 1 addition & 3 deletions nod/src/io/wia.rs
Original file line number Diff line number Diff line change
Expand Up @@ -768,9 +768,7 @@ impl BlockIO for DiscIOWIA {
));
}

// Calculate the group offset
let group_offset = rd.raw_data_offset.get() + (group_index * chunk_size) as u64;
(rd.group_index.get() + group_index, group_sector, group_offset)
(rd.group_index.get() + group_index, group_sector, 0)
};

// Fetch the group
Expand Down
2 changes: 1 addition & 1 deletion nodtool/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nodtool"
version = "1.1.0"
version = "1.1.1"
edition = "2021"
rust-version = "1.73.0"
authors = ["Luke Street <[email protected]>"]
Expand Down

0 comments on commit ad1ec58

Please sign in to comment.