diff --git a/launcher/main.cpp b/launcher/main.cpp index afaff56..c8f8e7a 100755 --- a/launcher/main.cpp +++ b/launcher/main.cpp @@ -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; std::unique_ptr tabletInterface;