summaryrefslogtreecommitdiff
path: root/libs/ardour/session_state.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2019-09-16 22:56:54 +0200
committerRobin Gareus <robin@gareus.org>2019-09-16 23:08:01 +0200
commit65ec8fe65ad2bc60c1fa7a9412a4740440de2d9c (patch)
tree1ed35fa98aff2a3f6db6ed5defd581918bb323e0 /libs/ardour/session_state.cc
parentabdb7b81c6c7ce19c3d3617bd31a621b16e2feb2 (diff)
Clarify splash-screen boot messages
Parsing MIDNAM is what takes the most time. "Reset Remote Controls" message is misleading (it means MMC), not control-surfaces, which a user may have none.
Diffstat (limited to 'libs/ardour/session_state.cc')
-rw-r--r--libs/ardour/session_state.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/libs/ardour/session_state.cc b/libs/ardour/session_state.cc
index 5bf6f92438..e38fd57db1 100644
--- a/libs/ardour/session_state.cc
+++ b/libs/ardour/session_state.cc
@@ -402,9 +402,11 @@ Session::post_engine_init ()
send_immediate_mmc (MIDI::MachineControlCommand (MIDI::MachineControl::cmdMmcReset));
send_immediate_mmc (MIDI::MachineControlCommand (Timecode::Time ()));
- MIDI::Name::MidiPatchManager::instance().add_search_path (session_directory().midi_patch_path() );
-
ltc_tx_initialize();
+
+ BootMessage (_("Loading MIDNAM Patch files"));
+
+ MIDI::Name::MidiPatchManager::instance().add_search_path (session_directory().midi_patch_path() );
/* initial program change will be delivered later; see ::config_changed() */
_state_of_the_state = Clean;