From 3def67a789b59098ff73d98994b2acea45a54ece Mon Sep 17 00:00:00 2001
From: Drake Arconis <drake@alchemyviewer.org>
Date: Mon, 10 Aug 2015 09:00:03 -0400
Subject: [PATCH] Limit texture mem to 1 gig while working out issues

---
 indra/newview/llviewertexture.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/indra/newview/llviewertexture.cpp b/indra/newview/llviewertexture.cpp
index 270382d8c4..3ff59eccfa 100755
--- a/indra/newview/llviewertexture.cpp
+++ b/indra/newview/llviewertexture.cpp
@@ -66,7 +66,7 @@
 // extern
 const S32Megabytes gMinVideoRam(32);
 #if defined(_WIN64) || defined(__amd64__) || defined(__x86_64__)
-const S32Megabytes gMaxVideoRam(2048);
+const S32Megabytes gMaxVideoRam(1024);
 #else
 const S32Megabytes gMaxVideoRam(512);
 #endif
-- 
GitLab