From 31712565cb7299729b0fdabd1e05f4d0eb39b043 Mon Sep 17 00:00:00 2001 From: NintenHero <37460517+MichaelHinrichs@users.noreply.github.com> Date: Sun, 11 Aug 2024 16:49:30 -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 4ec224b..fc1ae17 100644 --- a/Program.cs +++ b/Program.cs @@ -29,8 +29,7 @@ class Subfile { public string[] name = new string(br.ReadChars(32)).TrimEnd('\0').Split('\0'); - public int start = br.ReadInt32(); - public int size = br.ReadInt32(); + public int start = br.ReadInt32(), size = br.ReadInt32(); } } }