Skip to content

Commit

Permalink
Remove TGC version check
Browse files Browse the repository at this point in the history
  • Loading branch information
encounter committed Sep 5, 2024
1 parent c2e029d commit f1cc094
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions nod/src/io/tgc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,6 @@ impl DiscIOTGC {
if header.magic != TGC_MAGIC {
return Err(Error::DiscFormat("Invalid TGC magic".to_string()));
}
if header.version.get() != 0 {
return Err(Error::DiscFormat(format!(
"Unsupported TGC version {}",
header.version.get()
)));
}

// Read FST and adjust offsets
inner
Expand Down

0 comments on commit f1cc094

Please sign in to comment.