mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-14 04:34:19 +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);
|
SceneKeys = ReadKeyArray(r, (int)sceneKeyCount);
|
||||||
MaterialKeys = ReadKeyArray(r, (int)materialKeyCount);
|
MaterialKeys = ReadKeyArray(r, (int)materialKeyCount);
|
||||||
|
|
||||||
var subViewKey1Null = r.ReadUInt32();
|
var subViewKey1Default = r.ReadUInt32();
|
||||||
var subViewKey2Null = r.ReadUInt32();
|
var subViewKey2Default = r.ReadUInt32();
|
||||||
|
|
||||||
SubViewKeys = new Key[]
|
SubViewKeys = new Key[]
|
||||||
{
|
{
|
||||||
new()
|
new()
|
||||||
{
|
{
|
||||||
Id = 1,
|
Id = 1,
|
||||||
DefaultValue = subViewKey1Null,
|
DefaultValue = subViewKey1Default,
|
||||||
Values = Array.Empty<uint>(),
|
Values = Array.Empty<uint>(),
|
||||||
},
|
},
|
||||||
new()
|
new()
|
||||||
{
|
{
|
||||||
Id = 2,
|
Id = 2,
|
||||||
DefaultValue = subViewKey2Null,
|
DefaultValue = subViewKey2Default,
|
||||||
Values = Array.Empty<uint>(),
|
Values = Array.Empty<uint>(),
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue