diff options
Diffstat (limited to 'logic/BaseInstance.h')
-rw-r--r-- | logic/BaseInstance.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/logic/BaseInstance.h b/logic/BaseInstance.h index cf86fda6..2d7537d6 100644 --- a/logic/BaseInstance.h +++ b/logic/BaseInstance.h @@ -93,7 +93,6 @@ public: * \warning Don't change this value unless you know what you're doing. */ virtual QString currentVersionId() const = 0; - // virtual void setCurrentVersionId(QString val) = 0; /*! * Whether or not Minecraft should be downloaded when the instance is launched. @@ -151,7 +150,7 @@ public: virtual SettingsObject &settings() const; /// returns a valid update task if update is needed, NULL otherwise - virtual Task *doUpdate() = 0; + virtual Task *doUpdate(bool prepare_for_launch) = 0; /// returns a valid minecraft process, ready for launch with the given account. virtual MinecraftProcess *prepareForLaunch(MojangAccountPtr account) = 0; |