neutrino.cpp/stop_daemons(): display "Stop daemons" only in flash mode

Origin commit data
------------------
Branch: ni/coolstream
Commit: 64974f0692
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2013-06-08 (Sat, 08 Jun 2013)

Origin message was:
------------------
* neutrino.cpp/stop_daemons(): display "Stop daemons" only in flash mode

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
Michael Liebmann
2013-06-08 17:14:21 +02:00
parent 281a5d8f81
commit d105113462

View File

@@ -3564,9 +3564,11 @@ void CNeutrinoApp::stopDaemonsForFlash()
**************************************************************************************/
void stop_daemons(bool stopall, bool for_flash)
{
CVFD::getInstance()->Clear();
CVFD::getInstance()->setMode(CVFD::MODE_TVRADIO);
CVFD::getInstance()->ShowText("Stop daemons...");
if (for_flash) {
CVFD::getInstance()->Clear();
CVFD::getInstance()->setMode(CVFD::MODE_TVRADIO);
CVFD::getInstance()->ShowText("Stop daemons...");
}
dvbsub_close();
tuxtxt_stop();
@@ -3630,7 +3632,6 @@ void stop_daemons(bool stopall, bool for_flash)
delete videoDemux;
my_system(NEUTRINO_ENTER_FLASH_SCRIPT);
}
CVFD::getInstance()->ShowText("Stop daemons done");
}
void stop_video()