From 1fb7628da7e04a4b2d649577f3fffb335771146b Mon Sep 17 00:00:00 2001 From: fledge68 Date: Mon, 5 Mar 2012 17:46:16 +0000 Subject: [PATCH] -fix for issue 21. simply swapped + and - with B+L/R. Now + and - change song and B+L/R search by page --- source/menu/menu_main.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/source/menu/menu_main.cpp b/source/menu/menu_main.cpp index c138c38f..f3fedd06 100644 --- a/source/menu/menu_main.cpp +++ b/source/menu/menu_main.cpp @@ -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) {