diff --git a/Program.cs b/Program.cs index b1e14bf..14d47cd 100644 --- a/Program.cs +++ b/Program.cs @@ -14,8 +14,7 @@ namespace JOYCITY_Extractor if (new string(br.ReadChars(4)) != "PACK") throw new Exception("This is not a JOYCITY pak file."); - int tableStart = br.ReadInt32(); - int tableSize = br.ReadInt32(); + int tableStart = br.ReadInt32(), tableSize = br.ReadInt32(); br.BaseStream.Position = tableStart;//We're already there, but just in case. List subfiles = new();