diff options
Diffstat (limited to 'indra/newview/llworld.cpp')
-rw-r--r-- | indra/newview/llworld.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/indra/newview/llworld.cpp b/indra/newview/llworld.cpp index 07f4cbe0f0..e45b929b6f 100644 --- a/indra/newview/llworld.cpp +++ b/indra/newview/llworld.cpp @@ -84,12 +84,13 @@ const F32 LLWorld::mWidthInMeters = mWidth * mScale; // allocate the stack LLWorld::LLWorld() -: mLandFarClip(DEFAULT_FAR_PLANE), - mLastPacketsIn(0), - mLastPacketsOut(0), - mLastPacketsLost(0), - mSpaceTimeUSec(0) { + mSpaceTimeUSec = 0; + mLastPacketsIn = 0; + mLastPacketsOut = 0; + mLastPacketsLost = 0; + mLandFarClip = DEFAULT_FAR_PLANE; + if (gNoRender) { return; |