From 7fe2657ce97c99cb2921ec66eb6558283ffea858 Mon Sep 17 00:00:00 2001
From: Drake Arconis <lightdrake@gmail.com>
Date: Mon, 10 Mar 2014 08:52:25 -0400
Subject: [PATCH] changed: Use 64 Postfix for 64bit cache folder to reduce
 issues

---
 indra/llvfs/lldir.cpp | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/indra/llvfs/lldir.cpp b/indra/llvfs/lldir.cpp
index eae491f70a..43f17ed295 100755
--- a/indra/llvfs/lldir.cpp
+++ b/indra/llvfs/lldir.cpp
@@ -294,7 +294,11 @@ std::string LLDir::buildSLOSCacheDir() const
 	}
 	else
 	{
+#if defined(_WIN64) || defined(_X86_64)
+		res = add(getOSCacheDir(), "Alchemy64");
+#else
 		res = add(getOSCacheDir(), "Alchemy");
+#endif
 	}
 	return res;
 }
-- 
GitLab