diff options
author | Petr Mrázek <peterix@gmail.com> | 2016-08-09 22:29:17 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2016-08-09 22:29:17 +0200 |
commit | 74b4343c43cb0f3fc85cf27d1159349d0b3f32e6 (patch) | |
tree | 5e32c9bfb0dc6f76e0404c581b3ca43a26ee3e35 /application/MultiMC.cpp | |
parent | 877d1020db4acfd5085a27cad013b7d03177ba0b (diff) | |
download | PrismLauncher-74b4343c43cb0f3fc85cf27d1159349d0b3f32e6.tar.gz PrismLauncher-74b4343c43cb0f3fc85cf27d1159349d0b3f32e6.tar.bz2 PrismLauncher-74b4343c43cb0f3fc85cf27d1159349d0b3f32e6.zip |
GH-1642 fix instance launch from console
Diffstat (limited to 'application/MultiMC.cpp')
-rw-r--r-- | application/MultiMC.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/application/MultiMC.cpp b/application/MultiMC.cpp index 4b1447d9..f53d05e1 100644 --- a/application/MultiMC.cpp +++ b/application/MultiMC.cpp @@ -219,6 +219,10 @@ MultiMC::MultiMC(int &argc, char **argv, bool test_mode) : QApplication(argc, ar } qDebug() << "Binary path : " << binPath; qDebug() << "Application root path : " << rootPath; + if(!launchId.isEmpty()) + { + qDebug() << "ID of instance to launch : " << launchId; + } // load settings initGlobalSettings(test_mode); |