audioplayer.cpp: restore correct background when leaving screensaver

and remove background-pic from screensaver-loop


Origin commit data
------------------
Commit: 6e828fa0a4
Author: vanhofen <vanhofen@gmx.de>
Date: 2013-02-19 (Tue, 19 Feb 2013)

Origin message was:
------------------
- audioplayer.cpp: restore correct background when leaving screensaver

and remove background-pic from screensaver-loop
This commit is contained in:
vanhofen
2013-02-19 00:11:12 +01:00
parent 918e56adf3
commit 2ae8d6a111

View File

@@ -420,8 +420,6 @@ int CAudioPlayerGui::show()
videoDecoder->ShowPicture(fname);
} else if (pic_index) {
pic_index = 0;
videoDecoder->StopPicture();
videoDecoder->ShowPicture(DATADIR "/neutrino/icons/mp3.jpg");
}
} else
pic_index = 0;
@@ -2330,11 +2328,8 @@ void CAudioPlayerGui::screensaver(bool on)
{
g_RCInput->killTimer(stimer);
m_screensaver = false;
#if 0
m_frameBuffer->loadPal("radiomode.pal", 18, COL_MAXFREE);
m_frameBuffer->useBackground(m_frameBuffer->loadBackground(NEUTRINO_ICON_RADIOMODE));// set useBackground true or false
m_frameBuffer->paintBackground();
#endif
videoDecoder->StopPicture();
videoDecoder->ShowPicture(DATADIR "/neutrino/icons/mp3.jpg");
paint();
m_idletime = time(NULL);
}