Define Subfile's ints on the same line.

This commit is contained in:
NintenHero 2024-08-11 16:49:30 -05:00 committed by GitHub
parent 771601d0ce
commit 31712565cb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 2 deletions

View File

@ -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();
}
}
}