Remove TGC version check

This commit is contained in:
Luke Street 2024-09-04 19:59:50 -06:00
parent c2e029db6b
commit f1cc0949f3
1 changed files with 0 additions and 6 deletions

View File

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