mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-13 07:57:52 +00:00
- fixed startuo screen creation
This commit is contained in:
parent
2d901eca7f
commit
3b87c19b5b
2 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
|
@ -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);
|
return new FTTYStartupScreen(max_progress);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue