mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-04 12:45:45 +01:00
fix paren/newline formatting
This commit is contained in:
parent
89bd6cafa0
commit
585b61e58b
1 changed files with 2 additions and 4 deletions
|
|
@ -2623,11 +2623,9 @@ Route::set_state (const XMLNode& node, int version)
|
|||
if ( !(file_flags & PresentationInfo::TypeMask) ) {
|
||||
if (dynamic_cast<AudioTrack*>(this)) {
|
||||
_presentation_info.set_flags ( PresentationInfo::Flag (file_flags | PresentationInfo::AudioTrack) );
|
||||
}
|
||||
else if (dynamic_cast<MidiTrack*>(this)) {
|
||||
} else if (dynamic_cast<MidiTrack*>(this)) {
|
||||
_presentation_info.set_flags ( PresentationInfo::Flag (file_flags | PresentationInfo::MidiTrack) );
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
//no idea what this is, so let's call it an audio bus
|
||||
_presentation_info.set_flags ( PresentationInfo::Flag (file_flags | PresentationInfo::AudioBus) );
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue