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; }