diff options
Diffstat (limited to 'logic')
-rw-r--r-- | logic/Env.cpp | 6 | ||||
-rw-r--r-- | logic/Env.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/logic/Env.cpp b/logic/Env.cpp index 2f26f211..4214695d 100644 --- a/logic/Env.cpp +++ b/logic/Env.cpp @@ -134,7 +134,7 @@ void Env::registerVersionList(QString name, std::shared_ptr< BaseVersionList > v } -void Env::initHttpMetaCache(QString rootPath, QString staticDataPath) +void Env::initHttpMetaCache() { m_metacache.reset(new HttpMetaCache("metacache")); m_metacache->addBase("asset_indexes", QDir("assets/indexes").absolutePath()); @@ -146,8 +146,8 @@ void Env::initHttpMetaCache(QString rootPath, QString staticDataPath) m_metacache->addBase("liteloader", QDir("mods/liteloader").absolutePath()); m_metacache->addBase("general", QDir("cache").absolutePath()); m_metacache->addBase("skins", QDir("accounts/skins").absolutePath()); - m_metacache->addBase("root", QDir(rootPath).absolutePath()); - m_metacache->addBase("translations", QDir(staticDataPath + "/translations").absolutePath()); + m_metacache->addBase("root", QDir::currentPath()); + m_metacache->addBase("translations", QDir("translations").absolutePath()); m_metacache->addBase("icons", QDir("cache/icons").absolutePath()); m_metacache->Load(); } diff --git a/logic/Env.h b/logic/Env.h index b81cfa62..e3c5130a 100644 --- a/logic/Env.h +++ b/logic/Env.h @@ -35,7 +35,7 @@ public: std::shared_ptr<IconList> icons(); /// init the cache. FIXME: possible future hook point - void initHttpMetaCache(QString rootPath, QString staticDataPath); + void initHttpMetaCache(); /// Updates the application proxy settings from the settings object. void updateProxySettings(QString proxyTypeStr, QString addr, int port, QString user, QString password); |