summaryrefslogtreecommitdiff
path: root/indra/newview/llfeaturemanager.cpp
diff options
context:
space:
mode:
authorRye <rye@alchemyviewer.org>2025-10-23 02:28:53 -0400
committerRye <rye@alchemyviewer.org>2025-10-27 04:59:15 -0400
commitbe07dee32540c817f70e437cb3482695c53184b3 (patch)
treedb6ea82ce7eee27ca4a8b7e573e0a15e1cc39d55 /indra/newview/llfeaturemanager.cpp
parent8c92c6521b037b4e476e8b123f7570c02a9ee9cd (diff)
Fix low memory notification appearing incorrectly on non-windows platforms when changing graphics quality levels
Signed-off-by: Rye <rye@alchemyviewer.org>
Diffstat (limited to 'indra/newview/llfeaturemanager.cpp')
-rw-r--r--indra/newview/llfeaturemanager.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/indra/newview/llfeaturemanager.cpp b/indra/newview/llfeaturemanager.cpp
index ba54d93c75..ac19c08be8 100644
--- a/indra/newview/llfeaturemanager.cpp
+++ b/indra/newview/llfeaturemanager.cpp
@@ -464,10 +464,9 @@ bool LLFeatureManager::loadGPUClass()
mGPUClass = GPU_CLASS_5;
}
- #if LL_WINDOWS
- const F32Gigabytes MIN_PHYSICAL_MEMORY(2);
-
LLMemory::updateMemoryInfo();
+ #if LL_WINDOWS || LL_LINUX
+ const F32Gigabytes MIN_PHYSICAL_MEMORY(2);
F32Gigabytes physical_mem = LLMemory::getMaxMemKB();
if (MIN_PHYSICAL_MEMORY > physical_mem && mGPUClass > GPU_CLASS_1)
{