From d74961259b8db0487dd76e5412b1309d96d3fdd8 Mon Sep 17 00:00:00 2001 From: NintenHero <37460517+MichaelHinrichs@users.noreply.github.com> Date: Sun, 11 Aug 2024 16:53:42 -0500 Subject: [PATCH] Define table ints on the same line. --- Program.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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();