From dc8836fc83a4f272f7cf2da15e276cebbc5b16f6 Mon Sep 17 00:00:00 2001 From: svenhoefer Date: Tue, 31 Dec 2019 15:52:42 +0100 Subject: [PATCH] - avoid compiler warning Conflicts: src/neutrino.cpp Signed-off-by: Thilo Graf --- src/neutrino.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/neutrino.cpp b/src/neutrino.cpp index c37651468..aaf9eba1a 100644 --- a/src/neutrino.cpp +++ b/src/neutrino.cpp @@ -5327,6 +5327,8 @@ void CNeutrinoApp::StopSubtitles(bool enable_glcd_mirroring) #ifdef ENABLE_GRAPHLCD if (enable_glcd_mirroring) nGLCD::MirrorOSD(g_settings.glcd_mirror_osd); +#else + (void) enable_glcd_mirroring; // avoid compiler warning #endif if (mode == NeutrinoModes::mode_webtv) CMoviePlayerGui::getInstance(true).clearSubtitle(true);