From 4fc7ad827970d79fd391ef07ac8ed03f0a4b953c 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 --- 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);