Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
atenfyr committed Aug 4, 2024
1 parent 5d46d88 commit 22bec30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UAssetGUI/TableHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2641,7 +2641,7 @@ public void Save(bool forceNewLoad) // Reads from the table and updates the asse
///var numTimesNameUses = new Dictionary<string, int>();
for (int i = 0; i < dataGridView1.Rows.Count; i++)
{
PropertyData val = RowToPD(i, dtUs.Data.ElementAtOrDefault(i), false, asset.HasUnversionedProperties); // TODO: verify if actually dummies when unversioned
PropertyData val = RowToPD(i, dtUs.Data.ElementAtOrDefault(i), false, false);
if (val == null || !(val is StructPropertyData))
{
dirtySinceLastLoad = true;
Expand Down

0 comments on commit 22bec30

Please sign in to comment.