From 65ec8fe65ad2bc60c1fa7a9412a4740440de2d9c Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Mon, 16 Sep 2019 22:56:54 +0200 Subject: [PATCH] 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. --- libs/ardour/session_state.cc | 6 ++++-- 1 file 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;