From c05212e86bf678fdb82d0d372ea16dbfdb77c9cc Mon Sep 17 00:00:00 2001 From: svenhoefer Date: Sat, 27 Jan 2018 15:33:30 +0100 Subject: [PATCH] - neutrino: enable caching teletext by default Signed-off-by: Thilo Graf --- src/neutrino.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/neutrino.cpp b/src/neutrino.cpp index b6283414f..8733a8516 100644 --- a/src/neutrino.cpp +++ b/src/neutrino.cpp @@ -730,7 +730,7 @@ int CNeutrinoApp::loadSetup(const char * fname) g_settings.auto_cover = configfile.getInt32( "auto_cover", 0); g_settings.screenshot_dir = configfile.getString( "screenshot_dir", "/media/sda1/movies" ); - g_settings.cacheTXT = configfile.getInt32( "cacheTXT", 0); + g_settings.cacheTXT = configfile.getInt32( "cacheTXT", 1); g_settings.minimode = configfile.getInt32( "minimode", 0); g_settings.mode_clock = configfile.getInt32( "mode_clock", 0); g_settings.zapto_pre_time = configfile.getInt32( "zapto_pre_time", 0);