From d5e52be1a21d681abc1e9c1b0908ad6af64c211c Mon Sep 17 00:00:00 2001 From: vanhofen Date: Wed, 27 Dec 2017 00:49:34 +0100 Subject: [PATCH] movieplayer: remove obsolete static bool running handling Origin commit data ------------------ Commit: https://github.com/neutrino-images/ni-neutrino/commit/94c22c7ebe97089af397fb6ebab1d3d26cf2a51e Author: vanhofen Date: 2017-12-27 (Wed, 27 Dec 2017) Origin message was: ------------------ - movieplayer: remove obsolete static bool running handling --- src/gui/movieplayer.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/gui/movieplayer.cpp b/src/gui/movieplayer.cpp index 75db4e727..60afeb12d 100644 --- a/src/gui/movieplayer.cpp +++ b/src/gui/movieplayer.cpp @@ -374,13 +374,9 @@ void CMoviePlayerGui::restoreNeutrino() printf("%s: restoring done.\n", __func__);fflush(stdout); } -static bool running = false; int CMoviePlayerGui::exec(CMenuTarget * parent, const std::string & actionKey) { printf("[movieplayer] actionKey=%s\n", actionKey.c_str()); - if (running) - return menu_return::RETURN_EXIT_ALL; - running = true; if (parent) parent->hide(); @@ -476,7 +472,6 @@ int CMoviePlayerGui::exec(CMenuTarget * parent, const std::string & actionKey) haveLuaInfoFunc = false; } else { - running = false; return menu_return::RETURN_REPAINT; } @@ -509,8 +504,6 @@ int CMoviePlayerGui::exec(CMenuTarget * parent, const std::string & actionKey) CVFD::getInstance()->setMode(CVFD::MODE_TVRADIO); - running = false; - if (timeshift != TSHIFT_MODE_OFF){ timeshift = TSHIFT_MODE_OFF; return menu_return::RETURN_EXIT_ALL;