diff --git a/Cargo.lock b/Cargo.lock index 429db3b..329630f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -411,7 +411,7 @@ dependencies = [ [[package]] name = "nod" -version = "1.1.0" +version = "1.1.1" dependencies = [ "adler", "aes", @@ -434,7 +434,7 @@ dependencies = [ [[package]] name = "nodtool" -version = "1.1.0" +version = "1.1.1" dependencies = [ "argp", "base16ct", diff --git a/nod/Cargo.toml b/nod/Cargo.toml index 0b09bf0..26b3f0b 100644 --- a/nod/Cargo.toml +++ b/nod/Cargo.toml @@ -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 "] diff --git a/nod/src/io/wia.rs b/nod/src/io/wia.rs index 114b28e..cdb0f4d 100644 --- a/nod/src/io/wia.rs +++ b/nod/src/io/wia.rs @@ -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 diff --git a/nodtool/Cargo.toml b/nodtool/Cargo.toml index dd6189c..315d555 100644 --- a/nodtool/Cargo.toml +++ b/nodtool/Cargo.toml @@ -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 "]