From f1cc0949f32fbb621d3b8de464f1ab0eb7dd4d5a Mon Sep 17 00:00:00 2001 From: Luke Street Date: Wed, 4 Sep 2024 19:59:50 -0600 Subject: [PATCH] Remove TGC version check --- nod/src/io/tgc.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/nod/src/io/tgc.rs b/nod/src/io/tgc.rs index 2bd00d7..685b5f8 100644 --- a/nod/src/io/tgc.rs +++ b/nod/src/io/tgc.rs @@ -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