audioplayer.cpp: fix comparison operator

Origin commit data
------------------
Commit: ca8f8251ed
Author: vanhofen <vanhofen@gmx.de>
Date: 2013-02-28 (Thu, 28 Feb 2013)

Origin message was:
------------------
- audioplayer.cpp: fix comparison operator
This commit is contained in:
vanhofen
2013-02-28 10:02:59 +01:00
parent 3fabc8e493
commit 5bf5d83047

View File

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