diff options
author | Andrew <forkk@forkk.net> | 2013-12-09 12:06:33 -0600 |
---|---|---|
committer | Andrew <forkk@forkk.net> | 2013-12-09 12:06:33 -0600 |
commit | 712b87c643bbd7bc4ed2cfd459d0b9fdb69e5f0d (patch) | |
tree | 3a525b7e4488a7ea03521ddff33800ef81f92f07 /logic/LegacyInstance.cpp | |
parent | 7f52bed9e3f559adcbcf3f3c1c7ac2251964db8c (diff) | |
parent | b0dbd4f4afcf60e4021cbb3218bfe280c4989859 (diff) | |
download | PrismLauncher-712b87c643bbd7bc4ed2cfd459d0b9fdb69e5f0d.tar.gz PrismLauncher-712b87c643bbd7bc4ed2cfd459d0b9fdb69e5f0d.tar.bz2 PrismLauncher-712b87c643bbd7bc4ed2cfd459d0b9fdb69e5f0d.zip |
Merge branch 'develop' of github.com:MultiMC/MultiMC5 into develop
Diffstat (limited to 'logic/LegacyInstance.cpp')
-rw-r--r-- | logic/LegacyInstance.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/logic/LegacyInstance.cpp b/logic/LegacyInstance.cpp index 55523048..fef27bcd 100644 --- a/logic/LegacyInstance.cpp +++ b/logic/LegacyInstance.cpp @@ -44,12 +44,12 @@ LegacyInstance::LegacyInstance(const QString &rootDir, SettingsObject *settings, settings->registerSetting(new Setting("IntendedJarVersion", "")); } -std::shared_ptr<Task> LegacyInstance::doUpdate(bool prepare_for_launch) +std::shared_ptr<Task> LegacyInstance::doUpdate(bool only_prepare) { // make sure the jar mods list is initialized by asking for it. auto list = jarModList(); // create an update task - return std::shared_ptr<Task> (new LegacyUpdate(this, prepare_for_launch , this)); + return std::shared_ptr<Task> (new LegacyUpdate(this, only_prepare , this)); } MinecraftProcess *LegacyInstance::prepareForLaunch(MojangAccountPtr account) |