From d268dbd30fc0d130ce7832d1a0d2e0b45e06ce82 Mon Sep 17 00:00:00 2001 From: NintenHero <37460517+MichaelHinrichs@users.noreply.github.com> Date: Sun, 11 Aug 2024 16:52:41 -0500 Subject: [PATCH] Define Subfile's ints on the same line. --- Program.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Program.cs b/Program.cs index f5a57be..b1e14bf 100644 --- a/Program.cs +++ b/Program.cs @@ -38,8 +38,7 @@ namespace JOYCITY_Extractor class Subfile { public string name = new string(br.ReadChars(256)).TrimEnd('\0'); - public int start = br.ReadInt32(); - public int size = br.ReadInt32(); + public int start = br.ReadInt32(), size = br.ReadInt32(); } } }