- fixed startuo screen creation

This commit is contained in:
Christoph Oelckers 2022-06-01 10:20:32 +02:00
parent 2d901eca7f
commit 3b87c19b5b
2 changed files with 3 additions and 3 deletions

View File

@ -132,7 +132,7 @@ bool FBasicStartupScreen::NetLoop(bool (*timerCallback)(void*), void* const user
// ---------------------------------------------------------------------------
FStartupScreen *FStartupScreen::CreateInstance(const int maxProgress)
FStartupScreen *FStartupScreen::CreateInstance(const int maxProgress, bool showprogress)
{
return new FBasicStartupScreen(maxProgress, true);
return new FBasicStartupScreen(maxProgress, showprogress);
}

View File

@ -85,7 +85,7 @@ static const char SpinnyProgressChars[4] = { '|', '/', '-', '\\' };
//
//==========================================================================
FStartupScreen *FStartupScreen::CreateInstance(int max_progress)
FStartupScreen *FStartupScreen::CreateInstance(int max_progress, bool)
{
return new FTTYStartupScreen(max_progress);
}