Skip to content
Snippets Groups Projects
Commit 7fe2657c authored by Drake Arconis's avatar Drake Arconis
Browse files

changed: Use 64 Postfix for 64bit cache folder to reduce issues

parent 5b6cda4f
No related branches found
No related tags found
No related merge requests found
...@@ -294,7 +294,11 @@ std::string LLDir::buildSLOSCacheDir() const ...@@ -294,7 +294,11 @@ std::string LLDir::buildSLOSCacheDir() const
} }
else else
{ {
#if defined(_WIN64) || defined(_X86_64)
res = add(getOSCacheDir(), "Alchemy64");
#else
res = add(getOSCacheDir(), "Alchemy"); res = add(getOSCacheDir(), "Alchemy");
#endif
} }
return res; return res;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment