Fix RVZ GC junk data generation

This commit is contained in:
Luke Street 2024-02-26 19:21:28 -07:00
parent 8bd52d4075
commit ad1ec5828d
4 changed files with 5 additions and 7 deletions

4
Cargo.lock generated
View File

@ -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",

View File

@ -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 <luke@street.dev>"]

View File

@ -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

View File

@ -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 <luke@street.dev>"]