Disable the splash screen for now

This commit is contained in:
Jon Evans 2024-01-16 17:25:56 -05:00
parent b4bfdf95d3
commit 57c40d4f17
1 changed files with 8 additions and 1 deletions

View File

@ -417,6 +417,12 @@ void PGM_BASE::BuildArgvUtf8()
void PGM_BASE::ShowSplash()
{
// Disabling until we change to load each DSO at startup rather than lazy-load when needed.
// Note that once the splash screen is re-enabled, there are some remaining bugs to fix:
// Any wxWidgets error dialogs that appear during startup are hidden by the splash screen,
// so we either need to prevent these from happening (probably not feasible) or else change
// the error-handling path to make sure errors go on top of the splash.
#if 0
if( m_splash )
return;
@ -424,6 +430,7 @@ void PGM_BASE::ShowSplash()
NULL, -1, wxDefaultPosition, wxDefaultSize,
wxBORDER_NONE | wxSTAY_ON_TOP );
wxYield();
#endif
}