mirror of
https://mirror.ghproxy.com/https://github.com/dexyfex/CodeWalker
synced 2024-11-22 15:02:54 +08:00
Bug fix for modded .ydr saving
This commit is contained in:
parent
6ed3996afa
commit
fa1a3ac00e
@ -1776,7 +1776,7 @@ namespace CodeWalker.GameFiles
|
||||
public override void Write(ResourceDataWriter writer, params object[] parameters)
|
||||
{
|
||||
// update structure data
|
||||
this.VertexCount = (uint)(this.Data1 != null ? this.Data1.VertexCount : 0);
|
||||
this.VertexCount = (uint)(this.Data1 != null ? this.Data1.VertexCount : this.Data2 != null ? this.Data2.VertexCount : 0);
|
||||
this.DataPointer1 = (ulong)(this.Data1 != null ? this.Data1.FilePosition : 0);
|
||||
this.DataPointer2 = (ulong)(this.Data2 != null ? this.Data2.FilePosition : 0);
|
||||
this.InfoPointer = (ulong)(this.Info != null ? this.Info.FilePosition : 0);
|
||||
|
Loading…
Reference in New Issue
Block a user