From 07ecdc5fbb07a670248bb7f0f2f964781212a257 Mon Sep 17 00:00:00 2001 From: Marek Roszko Date: Mon, 4 Sep 2023 09:20:05 -0400 Subject: [PATCH] Force close the splash --- common/pgm_base.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/pgm_base.cpp b/common/pgm_base.cpp index adf73e693a..e692ca4b94 100644 --- a/common/pgm_base.cpp +++ b/common/pgm_base.cpp @@ -426,7 +426,7 @@ void PGM_BASE::HideSplash() if( !m_splash ) return; - m_splash->Close(); + m_splash->Close( true ); m_splash->Destroy(); m_splash = nullptr; }