diff --git a/launcher/main.cpp b/launcher/main.cpp index 2f0efe7..3ec4fba 100755 --- a/launcher/main.cpp +++ b/launcher/main.cpp @@ -5,7 +5,6 @@ #include "config.h" #include "desktopinterface.h" -#include "gameinstaller.h" #include "sapphirelauncher.h" #include "squareboot.h" @@ -19,11 +18,6 @@ int main(int argc, char* argv[]) { QCoreApplication::setApplicationName("astra"); QCoreApplication::setApplicationVersion(version); - // we want to decide which interface to use. this is decided by the - // -cli, -desktop, or -tablet - // the default is -desktop - // cli is a special case where it's always "enabled" - QCommandLineParser parser; parser.setApplicationDescription("Cross-platform FFXIV Launcher"); @@ -50,7 +44,7 @@ int main(int argc, char* argv[]) { #else LauncherCore c(false); #endif - std::unique_ptr desktopInterface = std::make_unique(c); + std::make_unique(c); return QApplication::exec(); }