From b53c1d1bd62e435a62ec52dfabe46dc37b54a977 Mon Sep 17 00:00:00 2001 From: Stefan Seyfried Date: Sun, 27 Apr 2014 19:33:03 +0200 Subject: [PATCH] scan_setup: fix build without ENABLE_FASTSCAN --- src/gui/scan_setup.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/gui/scan_setup.cpp b/src/gui/scan_setup.cpp index fc70b5f00..cafb07d9b 100644 --- a/src/gui/scan_setup.cpp +++ b/src/gui/scan_setup.cpp @@ -309,7 +309,11 @@ int CScanSetup::exec(CMenuTarget* parent, const std::string &actionKey) } if (actionKey == "fastdiseqc") { printf("[neutrino] CScanSetup::%s: showFastscanDiseqcSetup()\n", __FUNCTION__); +#ifdef ENABLE_FASTSCAN return showFastscanDiseqcSetup(); +#else + return res; +#endif } std::string scants_key[] = {"all", "manual", "test", "fast", "auto"/*doesn't exists in CScanTs!*/};