summaryrefslogtreecommitdiff
path: root/libs/ardour/session_state.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2008-02-13 18:05:36 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2008-02-13 18:05:36 +0000
commit1e7a2a3e661ca359af9f36c5b5b1d73f3a2a2221 (patch)
tree26e120366be5bb097ff6b9e302ced62ee55f19c4 /libs/ardour/session_state.cc
parent35b9bf0567beb7c795f395bd0ca528812d5aa9ac (diff)
lots more BootMessages
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@3050 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/session_state.cc')
-rw-r--r--libs/ardour/session_state.cc7
1 files changed, 6 insertions, 1 deletions
diff --git a/libs/ardour/session_state.cc b/libs/ardour/session_state.cc
index 06291991d8..669145b8c4 100644
--- a/libs/ardour/session_state.cc
+++ b/libs/ardour/session_state.cc
@@ -335,11 +335,15 @@ Session::second_stage_init (bool new_session)
return -1;
}
+ BootMessage (_("Reset Remote Controls"));
+
send_full_time_code ();
_engine.transport_locate (0);
deliver_mmc (MIDI::MachineControl::cmdMmcReset, 0);
deliver_mmc (MIDI::MachineControl::cmdLocate, 0);
+ BootMessage (_("Reset Control Protocols"));
+
ControlProtocolManager::instance().set_session (*this);
if (new_session) {
@@ -349,7 +353,6 @@ Session::second_stage_init (bool new_session)
}
_state_of_the_state = Clean;
-
DirtyChanged (); /* EMIT SIGNAL */
@@ -359,6 +362,8 @@ Session::second_stage_init (bool new_session)
state_was_pending = false;
}
+ BootMessage (_("Session loading complete"));
+
return 0;
}