From 5fd9ba831dec41d7bfdd1f897c201e38a3e3122b Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Wed, 7 Sep 2022 23:45:33 -0400 Subject: [PATCH] Don't check for steam option on non-steam builds --- launcher/main.cpp | 4 ++++ 1 file changed, 4 insertions(+) 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;