From 15e86efccb2fc06409c048d81d35ab98946e6f7d Mon Sep 17 00:00:00 2001 From: "[CST] Focus" Date: Mon, 26 Mar 2012 16:33:26 +0400 Subject: [PATCH] system/settings.cpp: fix copy/paste Origin commit data ------------------ Commit: https://github.com/neutrino-images/ni-neutrino/commit/4fc7ad827970d79fd391ef07ac8ed03f0a4b953c Author: [CST] Focus Date: 2012-03-26 (Mon, 26 Mar 2012) --- src/system/settings.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/system/settings.cpp b/src/system/settings.cpp index 2ff625a54..3e64c7e40 100644 --- a/src/system/settings.cpp +++ b/src/system/settings.cpp @@ -152,10 +152,10 @@ bool CScanSettings::loadSettings(const char * const fileName, const delivery_sys scan_fta_flag = configfile.getInt32("scan_fta_flag", 0); scan_nit = configfile.getInt32("scan_nit", 1); - scan_nit = configfile.getInt32("scan_nit_manual", 0); + scan_nit_manual = configfile.getInt32("scan_nit_manual", 0); scan_bat = configfile.getInt32("scan_bat", 0); - scan_bat = configfile.getInt32("scan_reset_numbers", 0); - scan_bat = configfile.getInt32("scan_logical_numbers", 0); + scan_reset_numbers = configfile.getInt32("scan_reset_numbers", 0); + scan_logical_numbers = configfile.getInt32("scan_logical_numbers", 0); TP_fec = configfile.getInt32("TP_fec", 1); TP_pol = configfile.getInt32("TP_pol", 0); TP_mod = configfile.getInt32("TP_mod", 3);