mirror of
https://github.com/MichaelHinrichs/JOYCITY-Extractor.git
synced 2024-11-27 02:58:41 +00:00
Define table ints on the same line.
This commit is contained in:
parent
d268dbd30f
commit
d74961259b
@ -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<Subfile> subfiles = new();
|
||||
|
Loading…
Reference in New Issue
Block a user