Changes made in the tweak editor are now correctly applied to the tweak data & are undo/redo supported

This commit is contained in:
Aruki
2018-12-30 03:55:50 -07:00
parent e8d3224088
commit 7b005d7ebd
25 changed files with 359 additions and 225 deletions

View File

@@ -17,7 +17,7 @@ protected:
public:
virtual void SerializeValue(void* pData, IArchive& Arc) const
{
Value(pData).Serialize(Arc);
ValueRef(pData).Serialize(Arc);
}
virtual const char* HashableTypeName() const

View File

@@ -25,7 +25,7 @@ public:
virtual void SerializeValue(void* pData, IArchive& Arc) const
{
Value(pData).Serialize(Arc);
ValueRef(pData).Serialize(Arc);
}
};