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:
parent
64dd7cb3ec
commit
5fd9ba831d
1 changed files with 4 additions and 0 deletions
|
@ -64,7 +64,11 @@ int main(int argc, char* argv[]) {
|
||||||
parser.showHelp();
|
parser.showHelp();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef ENABLE_STEAM
|
||||||
LauncherCore c(parser.isSet(steamOption));
|
LauncherCore c(parser.isSet(steamOption));
|
||||||
|
#else
|
||||||
|
LauncherCore c(false);
|
||||||
|
#endif
|
||||||
std::unique_ptr<DesktopInterface> desktopInterface;
|
std::unique_ptr<DesktopInterface> desktopInterface;
|
||||||
std::unique_ptr<TabletInterface> tabletInterface;
|
std::unique_ptr<TabletInterface> tabletInterface;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue