Separate out the cache directory for windows 64

This commit is contained in:
Latif Khalifa
2013-10-24 10:24:18 +02:00
parent f4f4a39c01
commit 3979ad46f6

View File

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