1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-23 12:57:45 +00:00

Remove old comment from main.cpp

This commit is contained in:
Joshua Goins 2023-07-29 09:04:10 -04:00
parent 7ca9f0bf7c
commit 558d02e344

View file

@ -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> desktopInterface = std::make_unique<DesktopInterface>(c);
std::make_unique<DesktopInterface>(c);
return QApplication::exec();
}