mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-27 13:44:15 +01:00
-fix for issue 21. simply swapped + and - with B+L/R. Now + and - change song and B+L/R search by page
This commit is contained in:
parent
26dd47f612
commit
1fb7628da7
@ -303,11 +303,11 @@ int CMenu::main(void)
|
||||
}
|
||||
m_btnMgr.noClick(false);
|
||||
}
|
||||
//Search by pages
|
||||
//Change Songs
|
||||
else if (!BTN_B_HELD && BTN_MINUS_PRESSED)
|
||||
m_cf.pageUp();
|
||||
MusicPlayer::Instance()->Previous();
|
||||
else if (!BTN_B_HELD && BTN_PLUS_PRESSED)
|
||||
m_cf.pageDown();
|
||||
MusicPlayer::Instance()->Next();
|
||||
else if (BTN_B_HELD)
|
||||
{
|
||||
const char *domain = _domainFromView();
|
||||
@ -341,11 +341,11 @@ int CMenu::main(void)
|
||||
m_btnMgr.show(m_mainLblNotice);
|
||||
}
|
||||
}
|
||||
//Change songs
|
||||
//Search by pages
|
||||
else if (BTN_LEFT_PRESSED)
|
||||
MusicPlayer::Instance()->Previous();
|
||||
m_cf.pageUp();
|
||||
else if (BTN_RIGHT_PRESSED)
|
||||
MusicPlayer::Instance()->Next();
|
||||
m_cf.pageDown();
|
||||
//Sorting Selection
|
||||
else if (BTN_PLUS_PRESSED && !m_locked)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user