From 3979ad46f602e720e62e27803f20cb1afd227544 Mon Sep 17 00:00:00 2001 From: Latif Khalifa Date: Thu, 24 Oct 2013 10:24:18 +0200 Subject: [PATCH] Separate out the cache directory for windows 64 --- indra/llvfs/lldir.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/indra/llvfs/lldir.cpp b/indra/llvfs/lldir.cpp index a93c833ba..c3a042247 100644 --- a/indra/llvfs/lldir.cpp +++ b/indra/llvfs/lldir.cpp @@ -363,7 +363,11 @@ std::string LLDir::buildSLOSCacheDir() const } else { +#if defined(_WIN64) + res = add(getOSCacheDir(), "SingularityViewer64"); +#else res = add(getOSCacheDir(), "SingularityViewer"); +#endif } return res; }