mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-24 15:37:48 +01:00
save processor type for Disk{Reader,Writer}
This commit is contained in:
parent
560ca0569f
commit
dbad25dbb1
2 changed files with 2 additions and 0 deletions
|
|
@ -134,6 +134,7 @@ XMLNode&
|
|||
DiskReader::state (bool full)
|
||||
{
|
||||
XMLNode& node (DiskIOProcessor::state (full));
|
||||
node.add_property(X_("type"), X_("diskreader"));
|
||||
return node;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -403,6 +403,7 @@ XMLNode&
|
|||
DiskWriter::state (bool full)
|
||||
{
|
||||
XMLNode& node (DiskIOProcessor::state (full));
|
||||
node.add_property(X_("type"), X_("diskwriter"));
|
||||
node.add_property (X_("capture-alignment"), enum_2_string (_alignment_choice));
|
||||
node.add_property (X_("record-safe"), (_record_safe ? X_("yes" : "no")));
|
||||
return node;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue