diff options
author | Petr Mrázek <peterix@gmail.com> | 2014-02-16 00:10:45 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2014-02-16 00:10:45 +0100 |
commit | 7ceb2cacb129d5924087f616cfc0b949689ed4fe (patch) | |
tree | 0bf4136e72a4d6bd56bbaf434fbddced719b01cd /logic/LegacyInstance.cpp | |
parent | 8219dbf612f4e6f603d304348fc388e364602f98 (diff) | |
download | MultiMC-7ceb2cacb129d5924087f616cfc0b949689ed4fe.tar MultiMC-7ceb2cacb129d5924087f616cfc0b949689ed4fe.tar.gz MultiMC-7ceb2cacb129d5924087f616cfc0b949689ed4fe.tar.lz MultiMC-7ceb2cacb129d5924087f616cfc0b949689ed4fe.tar.xz MultiMC-7ceb2cacb129d5924087f616cfc0b949689ed4fe.zip |
Fix a few bugs in profilers.
* Legacy was launching before the profiler.
* Some clarity changes.
* Report problem with empty strings as profiler paths.
Diffstat (limited to 'logic/LegacyInstance.cpp')
-rw-r--r-- | logic/LegacyInstance.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/logic/LegacyInstance.cpp b/logic/LegacyInstance.cpp index a9f0d112..6cd17fea 100644 --- a/logic/LegacyInstance.cpp +++ b/logic/LegacyInstance.cpp @@ -77,7 +77,7 @@ MinecraftProcess *LegacyInstance::prepareForLaunch(AuthSessionPtr account) launchScript += "windowTitle " + windowTitle() + "\n"; launchScript += "windowParams " + windowParams + "\n"; launchScript += "lwjgl " + lwjgl + "\n"; - launchScript += "launch legacy\n"; + launchScript += "launcher legacy\n"; } proc->setLaunchScript(launchScript); |