initialize variable

Without this, loading a session from the command line bypasses any initialization of session_loaded
and after the changes in 0a72c1317 that leads to incorrect startup
This commit is contained in:
Paul Davis 2024-02-20 11:16:48 -07:00
parent 01489a629f
commit c35515e43d
1 changed files with 1 additions and 0 deletions

View File

@ -74,6 +74,7 @@ StartupFSM::StartupFSM (EngineControl& amd)
, session_engine_hints ("EngineHints")
, session_is_new (false)
, session_name_edited (false)
, session_loaded (false)
, new_user (NewUserWizard::required())
, new_session_required (ARDOUR_COMMAND_LINE::new_session || (!ARDOUR::Profile->get_mixbus() && new_user))
, _state (new_user ? WaitingForNewUser : WaitingForSessionPath)