aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llfloaterlagmeter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/newview/llfloaterlagmeter.cpp')
-rw-r--r--linden/indra/newview/llfloaterlagmeter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/newview/llfloaterlagmeter.cpp b/linden/indra/newview/llfloaterlagmeter.cpp
index 35e679d..2367c4d 100644
--- a/linden/indra/newview/llfloaterlagmeter.cpp
+++ b/linden/indra/newview/llfloaterlagmeter.cpp
@@ -4,7 +4,7 @@
4 * 4 *
5 * $LicenseInfo:firstyear=2007&license=viewergpl$ 5 * $LicenseInfo:firstyear=2007&license=viewergpl$
6 * 6 *
7 * Copyright (c) 2007-2008, Linden Research, Inc. 7 * Copyright (c) 2007-2009, Linden Research, Inc.
8 * 8 *
9 * Second Life Viewer Source Code 9 * Second Life Viewer Source Code
10 * The source code in this file ("Source Code") is provided by Linden Lab 10 * The source code in this file ("Source Code") is provided by Linden Lab
@@ -183,7 +183,7 @@ void LLFloaterLagMeter::determineClient()
183 { 183 {
184 mClientCause->setText( getString("client_texture_loading_cause_msg", mStringArgs) ); 184 mClientCause->setText( getString("client_texture_loading_cause_msg", mStringArgs) );
185 } 185 }
186 else if(LLViewerImage::sBoundTextureMemory > LLViewerImage::sMaxBoundTextureMem) 186 else if((LLViewerImage::sBoundTextureMemory >> 20) > LLViewerImage::sMaxBoundTextureMem)
187 { 187 {
188 mClientCause->setText( getString("client_texture_memory_cause_msg", mStringArgs) ); 188 mClientCause->setText( getString("client_texture_memory_cause_msg", mStringArgs) );
189 } 189 }