fix wrong p

This commit is contained in:
Markus 2019-09-29 12:26:24 +02:00
parent c9b2d94d76
commit 45b87e46d5

View File

@ -11,8 +11,8 @@ int setPaths(Settings &settings)
settings.pathSymbol = '/'; settings.pathSymbol = '/';
#endif #endif
#ifdef _WIN32 #ifdef _WIN32
CacheDir = std::string(getenv("APPDATA")) + "\\Local\\S_New4\\"; CacheDir = std::string(getenv("LOCALAPPDATA")) + "\\S_New4\\"; // C:\Users\{username}\AppData\Local
SettingsDir = std::string( getenv("APPDATA") ) + "\\Roaming\\S_New4\\"; SettingsDir = std::string( getenv("APPDATA") ) + "\\S_New4\\"; // C:\Users\{username}\AppData\Roaming
settings.pathSymbol = '\\'; settings.pathSymbol = '\\';
#endif #endif