diff options
author | Petr Mrázek <peterix@gmail.com> | 2013-12-22 05:47:10 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2013-12-22 05:47:10 +0100 |
commit | 7a07ed79407edcb2a543aa0dc80745a0b8c2e234 (patch) | |
tree | 1a8bd8b2c8e902b926af0216cac3386709407265 /logic/lists | |
parent | 245d441a6eee558557a01d61a726b7feaeb5dc17 (diff) | |
download | MultiMC-7a07ed79407edcb2a543aa0dc80745a0b8c2e234.tar MultiMC-7a07ed79407edcb2a543aa0dc80745a0b8c2e234.tar.gz MultiMC-7a07ed79407edcb2a543aa0dc80745a0b8c2e234.tar.lz MultiMC-7a07ed79407edcb2a543aa0dc80745a0b8c2e234.tar.xz MultiMC-7a07ed79407edcb2a543aa0dc80745a0b8c2e234.zip |
FTB fixage
* Corrected an uninitialized variable that prevented forge list loadinf on Windows
* Run the update step twice for FTB instances to ensure forge libs get downloaded
Diffstat (limited to 'logic/lists')
-rw-r--r-- | logic/lists/ForgeVersionList.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/logic/lists/ForgeVersionList.h b/logic/lists/ForgeVersionList.h index bf9e87b2..f32975ed 100644 --- a/logic/lists/ForgeVersionList.h +++ b/logic/lists/ForgeVersionList.h @@ -80,7 +80,7 @@ public: protected: QList<BaseVersionPtr> m_vlist; - bool m_loaded; + bool m_loaded = false; protected slots: |