change count from short to ushort

This commit is contained in:
Michael Hinrichs 2024-05-19 15:32:37 -05:00
parent c773a7356e
commit 4b77a7d323
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ namespace La_Tale_Extractor
br = new BinaryReader(File.OpenRead(args[0]));
br.BaseStream.Position = br.BaseStream.Length - 152;
int table = br.ReadInt32() + br.ReadInt32();
short count = br.ReadInt16();
ushort count = br.ReadUInt16();
br.ReadInt32();
br.BaseStream.Position = table;