gui/scan_setup.cpp: add explicit option to enable/disable fast-scan update

This commit is contained in:
[CST] Focus
2014-04-07 15:20:47 +04:00
parent e35abd4ff2
commit b925988afe
4 changed files with 20 additions and 9 deletions

View File

@@ -154,6 +154,7 @@ bool CScanSettings::loadSettings(const char * const fileName)
fast_type = configfile.getInt32("fast_type", 2);
fast_op = configfile.getInt32("fast_op", 0);
fst_version = configfile.getInt32("fst_version", 0);
fst_update = configfile.getInt32("fst_update", 0);
cable_nid = configfile.getInt32("cable_nid", 0);
return ret;
@@ -174,6 +175,7 @@ bool CScanSettings::saveSettings(const char * const fileName)
configfile.setInt32("fast_type", fast_type);
configfile.setInt32("fast_op", fast_op);
configfile.setInt32("fst_version", fst_version);
configfile.setInt32("fst_update", fst_update);
configfile.setInt32("cable_nid", cable_nid);
configfile.setString("satName", satName);