diff options
| author | WitherOrNot | 2025-04-07 22:19:19 +0000 |
|---|---|---|
| committer | GitHub | 2025-04-07 22:19:19 +0000 |
| commit | 3a3ac06ca3715127475c7a2c7b3f0782e1690dfb (patch) | |
| tree | f83328728b259bb6ec1e52979322377df1c7d627 /LibTSforge/PhysicalStore/VariableBag.cs | |
| parent | bdd201061daf7492fb116b86a54cd349c01fbb0a (diff) | |
| parent | 22bbb93e909154da94aee1b55e551038a3a37e6c (diff) | |
| download | TSforge-3a3ac06ca3715127475c7a2c7b3f0782e1690dfb.zip | |
Merge pull request #4 from massgravel/minor-fixups
Minor fixups
Diffstat (limited to 'LibTSforge/PhysicalStore/VariableBag.cs')
| -rw-r--r-- | LibTSforge/PhysicalStore/VariableBag.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/LibTSforge/PhysicalStore/VariableBag.cs b/LibTSforge/PhysicalStore/VariableBag.cs index ebe413f..bca0e32 100644 --- a/LibTSforge/PhysicalStore/VariableBag.cs +++ b/LibTSforge/PhysicalStore/VariableBag.cs @@ -74,7 +74,6 @@ namespace LibTSforge.PhysicalStore public override void Decode(BinaryReader reader) { uint type = reader.ReadUInt32(); - uint unk_zero = reader.ReadUInt32(); uint lenName = reader.ReadUInt32(); uint lenVal = reader.ReadUInt32(); uint crc = reader.ReadUInt32(); @@ -156,7 +155,7 @@ namespace LibTSforge.PhysicalStore public List<CRCBlock> Blocks = new List<CRCBlock>(); private readonly PSVersion Version; - public void Deserialize(byte[] data) + private void Deserialize(byte[] data) { int len = data.Length; |
