Revert "Fix random bad performance on machines <= 8 cores - looks weird, but it's true"

This reverts commit 49b83f683c.
meow-7.2.2
Ansariel 2023-12-02 18:00:35 +01:00
parent 35de2e2a2f
commit da8dea3d56
1 changed files with 4 additions and 1 deletions

View File

@ -555,7 +555,10 @@ void display(BOOL rebuild, F32 zoom_factor, int subfield, BOOL for_snapshot)
// Bail out if we're in the startup state and don't want to try to
// render the world.
//
if (LLStartUp::getStartupState() < STATE_PRECACHE)
// <FS:Ansariel> Revert to original state to prevent flickering if login progress screen is disabled
//if (LLStartUp::getStartupState() < STATE_PRECACHE)
if (LLStartUp::getStartupState() < STATE_STARTED)
// </FS:Ansariel>
{
LLAppViewer::instance()->pingMainloopTimeout("Display:Startup");
display_startup();