1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-20 11:47:46 +00:00

Don't check for steam option on non-steam builds

This commit is contained in:
Joshua Goins 2022-09-07 23:45:33 -04:00
parent 64dd7cb3ec
commit 5fd9ba831d

View file

@ -64,7 +64,11 @@ int main(int argc, char* argv[]) {
parser.showHelp();
}
#ifdef ENABLE_STEAM
LauncherCore c(parser.isSet(steamOption));
#else
LauncherCore c(false);
#endif
std::unique_ptr<DesktopInterface> desktopInterface;
std::unique_ptr<TabletInterface> tabletInterface;