Skip to content

Commit

Permalink
fix after pick DVB-T2 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Frankenstone committed Jan 17, 2021
1 parent 6b37357 commit 61b4b9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gui/scan_setup.cpp
Expand Up @@ -2074,7 +2074,7 @@ void CScanSetup::updateManualSettings()
scansettings.terrestrial_TP_transmit_mode = tI->second.feparams.transmission_mode;
scansettings.terrestrial_TP_coderate_HP = tI->second.feparams.code_rate_HP;
scansettings.terrestrial_TP_coderate_LP = tI->second.feparams.code_rate_LP;
scansettings.terrestrial_TP_pli = std::to_string(tI->second.feparams.plp_id);
scansettings.terrestrial_TP_pli = to_string(tI->second.feparams.plp_id);

scansettings.terrestrialName = CServiceManager::getInstance()->GetSatelliteName(channel->getSatellitePosition());
}
Expand Down Expand Up @@ -2186,7 +2186,7 @@ int CTPSelectHandler::exec(CMenuTarget* parent, const std::string &actionkey)
scansettings.terrestrial_TP_transmit_mode = tmpI->second.feparams.transmission_mode;
scansettings.terrestrial_TP_coderate_HP = tmpI->second.feparams.code_rate_HP;
scansettings.terrestrial_TP_coderate_LP = tmpI->second.feparams.code_rate_LP;
scansettings.terrestrial_TP_pli = std::to_string(tmpI->second.feparams.plp_id);
scansettings.terrestrial_TP_pli = to_string(tmpI->second.feparams.plp_id);
//scansettings.terrestrialName = CServiceManager::getInstance()->GetSatelliteName(channel->getSatellitePosition());
}
}
Expand Down

0 comments on commit 61b4b9d

Please sign in to comment.