- audioplayer.cpp: ignore first keypress when screensaver is on

just quit the screensaver and return to loop
This commit is contained in:
svenhoefer
2013-02-19 22:09:47 +01:00
parent bf56c88ee4
commit 95b51f6993

View File

@@ -432,6 +432,11 @@ int CAudioPlayerGui::show()
if (m_screensaver) if (m_screensaver)
{ {
screensaver(false); screensaver(false);
if (msg < CRCInput::RC_MaxRC) {
// ignore first keypress - just quit the screensaver
g_RCInput->clearRCMsg();
continue;
}
} }
} }