diff options
author | andreykproductengine <andreykproductengine@lindenlab.com> | 2017-07-11 11:38:52 +0300 |
---|---|---|
committer | andreykproductengine <andreykproductengine@lindenlab.com> | 2017-07-11 11:38:52 +0300 |
commit | 2c77a197be1b1c5c19008f9cd5ea7508a61d1bfe (patch) | |
tree | b8d6ea06b5dda306bdd5bbffe440340fcb79d7d1 | |
parent | 1144fdc0441d1ea2113474585ed55d2690501a7b (diff) |
MAINT-7554 Removed unneeded check
-rw-r--r-- | indra/newview/llappviewer.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index b4c433893d..6a9d22dd07 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -1425,8 +1425,7 @@ bool LLAppViewer::frame() gGLActive = TRUE; static U64 last_call = 0; - if (LLStartUp::getStartupState() == STATE_STARTED - && !gTeleportDisplay) + if (!gTeleportDisplay) { // Frame/draw throttling U64 elapsed_time = LLTimer::getTotalTime() - last_call; |