mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-27 07:23:09 +02:00
CUpnpBrowserGui: fix possible compile errot
error: suggest parentheses around ‘&&’ within ‘||’ [-Werror=parentheses]
This commit is contained in:
@@ -869,8 +869,7 @@ bool CUpnpBrowserGui::selectItem(std::string id)
|
|||||||
m_frameBuffer->Clear();
|
m_frameBuffer->Clear();
|
||||||
refresh = true;
|
refresh = true;
|
||||||
}
|
}
|
||||||
else if (m_folderplay && (msg == (neutrino_msg_t) CRCInput::RC_prev)
|
else if (m_folderplay && ((msg == (neutrino_msg_t) CRCInput::RC_prev) || video_key_msg == CMoviePlayerGui::PLUGIN_PLAYSTATE_PREV)){
|
||||||
|| video_key_msg == CMoviePlayerGui::PLUGIN_PLAYSTATE_PREV){
|
|
||||||
timeout = 0;
|
timeout = 0;
|
||||||
m_playid -= 2;
|
m_playid -= 2;
|
||||||
if (m_playid < 0)
|
if (m_playid < 0)
|
||||||
|
Reference in New Issue
Block a user