diff --git a/.vs/Toolbox/v16/.suo b/.vs/Toolbox/v16/.suo index 759b6551..52832be4 100644 Binary files a/.vs/Toolbox/v16/.suo and b/.vs/Toolbox/v16/.suo differ diff --git a/.vs/Toolbox/v16/Server/sqlite3/storage.ide b/.vs/Toolbox/v16/Server/sqlite3/storage.ide index 28b98d9c..fe9029c5 100644 Binary files a/.vs/Toolbox/v16/Server/sqlite3/storage.ide and b/.vs/Toolbox/v16/Server/sqlite3/storage.ide differ diff --git a/File_Format_Library/FileFormats/Texture/TXE.cs b/File_Format_Library/FileFormats/Texture/TXE.cs index c436175f..590f7ca7 100644 --- a/File_Format_Library/FileFormats/Texture/TXE.cs +++ b/File_Format_Library/FileFormats/Texture/TXE.cs @@ -40,11 +40,6 @@ namespace FirstPlugin } } - private void SkipPadding(FileReader stream, int offset) - { - stream.Seek((~(offset - 1) & (stream.Position + offset - 1)) - stream.Position); - } - public static Dictionary FormatsTXE = new Dictionary() { [0] = TEX_FORMAT.RGB5A3, @@ -57,7 +52,6 @@ namespace FirstPlugin [7] = TEX_FORMAT.RGBA32, }; - public void Load(System.IO.Stream stream) { Text = FileName; @@ -83,7 +77,6 @@ namespace FirstPlugin PlatformSwizzle = PlatformSwizzle.Platform_Gamecube; int imageDataSize = reader.ReadInt32(); - SkipPadding(reader, 0x20); reader.SeekBegin(32);