diff --git a/File_Format_Library/FileFormats/IGZ/IGZ.cs b/File_Format_Library/FileFormats/IGZ/IGZ.cs index a9b442ef..03e6229a 100644 --- a/File_Format_Library/FileFormats/IGZ/IGZ.cs +++ b/File_Format_Library/FileFormats/IGZ/IGZ.cs @@ -108,6 +108,7 @@ namespace FirstPlugin //Now go to the first block. This is a list of section headers //Each header follows the same structure, a signature, count, and size + reader.SeekBegin(offsets[0]); for (int s = 0; s < SectionCount; s++) { long pos = reader.Position; diff --git a/File_Format_Library/Main.cs b/File_Format_Library/Main.cs index 12d230ea..3a63592e 100644 --- a/File_Format_Library/Main.cs +++ b/File_Format_Library/Main.cs @@ -361,8 +361,8 @@ namespace FirstPlugin Formats.Add(typeof(G1T)); Formats.Add(typeof(BFLYT)); Formats.Add(typeof(ZSI)); - Formats.Add(typeof(IGZ)); - + // Formats.Add(typeof(IGZ)); + //Unfinished wip formats not ready for use if (Runtime.DEVELOPER_DEBUG_MODE) {