From 56274bf320c74856cf8db7feaa0ba028b9ece6a9 Mon Sep 17 00:00:00 2001 From: svenhoefer Date: Thu, 21 Oct 2021 22:35:06 +0200 Subject: [PATCH] - neutrino: reset videodecoder at startup Conflicts: src/neutrino.cpp Signed-off-by: Thilo Graf --- src/neutrino.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/neutrino.cpp b/src/neutrino.cpp index 697ca6ef3..a5016c93b 100644 --- a/src/neutrino.cpp +++ b/src/neutrino.cpp @@ -3087,8 +3087,12 @@ TIMER_START(); g_videoSettings = new CVideoSettings; g_videoSettings->setVideoSettings(); - // show start logo - startlogo = frameBuffer->showFrame("start.jpg"); + // reset videodecoder to fullscreen + videoDecoder->Pig(-1, -1, -1, -1); + + // show startlogo + if (startlogo) + startlogo = frameBuffer->showFrame("start.jpg"); g_RCInput = new CRCInput();