From 9098c651a303be86cf9e4b931c6c16f0f26b5655 Mon Sep 17 00:00:00 2001 From: BPanther Date: Wed, 12 Feb 2020 23:43:38 +0100 Subject: [PATCH] default for ci_delay changed to 128 --- src/neutrino.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/neutrino.cpp b/src/neutrino.cpp index 1a4ccebb2..a29f8e95b 100644 --- a/src/neutrino.cpp +++ b/src/neutrino.cpp @@ -466,7 +466,7 @@ int CNeutrinoApp::loadSetup(const char * fname) g_settings.ci_rec_zapto = configfile.getInt32("ci_rec_zapto", 0); g_settings.ci_mode = configfile.getInt32("ci_mode", 0); #if BOXMODEL_VUPLUS - g_settings.ci_delay = configfile.getInt32("ci_delay", 256); + g_settings.ci_delay = configfile.getInt32("ci_delay", 128); #endif // ci-settings for each slot unsigned int ci_slots = cCA::GetInstance()->GetNumberCISlots();