Skip to content

Commit

Permalink
Fix missing Read/Write zone coordinated ul
Browse files Browse the repository at this point in the history
  • Loading branch information
lpugin committed Dec 27, 2023
1 parent 6215ccd commit d89dc94
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/iomei.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2900,6 +2900,7 @@ void MEIOutput::WriteZone(pugi::xml_node currentNode, Zone *zone)
assert(zone);
this->WriteXmlId(currentNode, zone);
zone->WriteCoordinated(currentNode);
zone->WriteCoordinatedUl(currentNode);
zone->WriteTyped(currentNode);
}

Expand Down Expand Up @@ -8531,6 +8532,7 @@ bool MEIInput::ReadZone(Surface *parent, pugi::xml_node zone)
Zone *vrvZone = new Zone();
this->SetMeiID(zone, vrvZone);
vrvZone->ReadCoordinated(zone);
vrvZone->ReadCoordinatedUl(zone);
vrvZone->ReadTyped(zone);
parent->AddChild(vrvZone);
return true;
Expand Down

0 comments on commit d89dc94

Please sign in to comment.