mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-12 18:27:24 +01:00
Fix mistaken rename.
This commit is contained in:
parent
b31c5fdd1f
commit
9cf69def7b
1 changed files with 4 additions and 4 deletions
|
|
@ -122,21 +122,21 @@ public partial class ShpkFile : IWritable
|
|||
SceneKeys = ReadKeyArray(r, (int)sceneKeyCount);
|
||||
MaterialKeys = ReadKeyArray(r, (int)materialKeyCount);
|
||||
|
||||
var subViewKey1Null = r.ReadUInt32();
|
||||
var subViewKey2Null = r.ReadUInt32();
|
||||
var subViewKey1Default = r.ReadUInt32();
|
||||
var subViewKey2Default = r.ReadUInt32();
|
||||
|
||||
SubViewKeys = new Key[]
|
||||
{
|
||||
new()
|
||||
{
|
||||
Id = 1,
|
||||
DefaultValue = subViewKey1Null,
|
||||
DefaultValue = subViewKey1Default,
|
||||
Values = Array.Empty<uint>(),
|
||||
},
|
||||
new()
|
||||
{
|
||||
Id = 2,
|
||||
DefaultValue = subViewKey2Null,
|
||||
DefaultValue = subViewKey2Default,
|
||||
Values = Array.Empty<uint>(),
|
||||
},
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue