diff options
-rw-r--r-- | application/MultiMC.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/application/MultiMC.cpp b/application/MultiMC.cpp index 41f5281c..f3933620 100644 --- a/application/MultiMC.cpp +++ b/application/MultiMC.cpp @@ -210,10 +210,10 @@ MultiMC::MultiMC(int &argc, char **argv) : QApplication(argc, argv) QDir foo(FS::PathCombine(binPath, "..")); m_rootPath = foo.absolutePath(); #elif defined(Q_OS_WIN32) - rootPath = binPath; + m_rootPath = binPath; #elif defined(Q_OS_MAC) QDir foo(FS::PathCombine(binPath, "../..")); - rootPath = foo.absolutePath(); + m_rootPath = foo.absolutePath(); #endif // init the logger |