mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-26 15:02:56 +02:00
fix sign of int
git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@67 e54a6e83-5905-42d5-8d5c-058d10e6a962
This commit is contained in:
@@ -559,7 +559,7 @@ int CAudioPlayerGui::show()
|
||||
if(m_show_playlist && !m_playlist.empty() )
|
||||
{
|
||||
int prevselected = m_selected;
|
||||
int step = msg == CRCInput::RC_page_down ? m_listmaxshow : 1;
|
||||
unsigned int step = msg == CRCInput::RC_page_down ? m_listmaxshow : 1;
|
||||
m_selected += step;
|
||||
|
||||
if(m_selected >= m_playlist.size()) {
|
||||
|
Reference in New Issue
Block a user