From cb36c6e712a0f224ec39b8c52c2cc7ac1b47c912 Mon Sep 17 00:00:00 2001 From: Stefan Seyfried Date: Sun, 15 Jul 2012 13:23:52 +0200 Subject: [PATCH] tuxtxt: make sure that startpage is initialized when enabling tuxtxt caching, saving settings and then starting tuxtxt, the start page was not initialized --- lib/libtuxtxt/libtuxtxt.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/libtuxtxt/libtuxtxt.cpp b/lib/libtuxtxt/libtuxtxt.cpp index 27111f618..40af36282 100644 --- a/lib/libtuxtxt/libtuxtxt.cpp +++ b/lib/libtuxtxt/libtuxtxt.cpp @@ -37,6 +37,8 @@ int tuxtxt_init() tuxtxt_cache.vtxtpid = -1; tuxtxt_cache.thread_id = 0; tuxtxt_cache.dmx = -1; + /* not sure if this is correct here... */ + tuxtxt_cache.page = 0x100; return 1;//tuxtxt_init_demuxer(); }