mirror of https://github.com/encounter/nod-rs.git
Fix RVZ GC junk data generation
This commit is contained in:
parent
8bd52d4075
commit
ad1ec5828d
|
@ -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",
|
||||
|
|
|
@ -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>"]
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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>"]
|
||||
|
|
Loading…
Reference in New Issue