From 558d02e344cd8d5ddf25a42ede17476b70ab0efa Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sat, 29 Jul 2023 09:04:10 -0400 Subject: [PATCH] Remove old comment from main.cpp --- launcher/main.cpp | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) 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(); }