From 248fed502e229f7325ad4a208e1e52b541e242ab Mon Sep 17 00:00:00 2001 From: KillzXGaming Date: Sun, 4 Aug 2019 11:50:04 -0400 Subject: [PATCH] Try to fix build --- File_Format_Library/FileFormats/Texture/TXE.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/File_Format_Library/FileFormats/Texture/TXE.cs b/File_Format_Library/FileFormats/Texture/TXE.cs index 590f7ca7..d63e60ac 100644 --- a/File_Format_Library/FileFormats/Texture/TXE.cs +++ b/File_Format_Library/FileFormats/Texture/TXE.cs @@ -68,7 +68,7 @@ namespace FirstPlugin Width = reader.ReadUInt16(); Height = reader.ReadUInt16(); - _ = reader.ReadInt16(); + reader.ReadInt16(); //Turn this format into a common format used by this tool ushort texFormat = reader.ReadUInt16(); Format = FormatsTXE[texFormat];