1
0
mirror of synced 2025-03-03 00:33:16 +01:00

Fix appveyor issues by removing _ =

This commit is contained in:
JohnFiddleystein 2019-08-04 16:05:12 +01:00
parent 9ae15ee63c
commit 1f9cb7e46d
3 changed files with 11 additions and 11 deletions

Binary file not shown.

View File

@ -75,22 +75,22 @@ namespace FirstPlugin
byte texFormat = reader.ReadByte(); byte texFormat = reader.ReadByte();
Format = Decode_Gamecube.ToGenericFormat((Decode_Gamecube.TextureFormats)texFormat); Format = Decode_Gamecube.ToGenericFormat((Decode_Gamecube.TextureFormats)texFormat);
_ = reader.ReadByte(); // enable alpha reader.ReadByte(); // enable alpha
Width = reader.ReadUInt16(); Width = reader.ReadUInt16();
Height = reader.ReadUInt16(); Height = reader.ReadUInt16();
_ = reader.ReadByte(); // wrap s reader.ReadByte(); // wrap s
_ = reader.ReadByte(); // wrap t reader.ReadByte(); // wrap t
PaletteFormat = (PALETTE_FORMAT)reader.ReadInt16(); PaletteFormat = (PALETTE_FORMAT)reader.ReadInt16();
_ = reader.ReadInt16(); // num of palette entries reader.ReadInt16(); // num of palette entries
_ = reader.ReadInt32(); // offset to palette data reader.ReadInt32(); // offset to palette data
_ = reader.ReadInt32(); // border colour reader.ReadInt32(); // border colour
_ = reader.ReadByte(); // min filter type reader.ReadByte(); // min filter type
_ = reader.ReadByte(); // mag filter type reader.ReadByte(); // mag filter type
_ = reader.ReadInt16(); reader.ReadInt16();
MipCount = reader.ReadByte(); MipCount = reader.ReadByte();
_ = reader.ReadByte(); reader.ReadByte();
_ = reader.ReadInt16(); reader.ReadInt16();
uint offsetToImageData = reader.ReadUInt32(); // offset to image data uint offsetToImageData = reader.ReadUInt32(); // offset to image data
//Lets set our method of decoding //Lets set our method of decoding