diff --git a/data/help/english.txt b/data/help/english.txt index 5fff9ccb..5c1eab5e 100644 --- a/data/help/english.txt +++ b/data/help/english.txt @@ -22,7 +22,7 @@ Controls: -- A on USB, DML, Channels, Emu, or Homebrew Icon = Switch to that view -- B on USB, DML, Channels, Emu, or Homebrew Icon = Enable/Disable Emu-NAND and switch to Channels view -- A on Home Icon = Exit to Wii menu --- Hold B for 3 seconds = Display Source menu +-- Hold B for 3 seconds / B on Home Icon (wiimote_gestures enabled) = Display Source menu -- A on Disc Icon (Game Disc in Drive) = Launch game disc -- A on Question Mark Icon = Display credits and this help file, and update WiiFlow diff --git a/source/menu/menu_main.cpp b/source/menu/menu_main.cpp index db3f4b76..aad04983 100644 --- a/source/menu/menu_main.cpp +++ b/source/menu/menu_main.cpp @@ -491,6 +491,15 @@ int CMenu::main(void) UpdateCache(m_current_view); LoadView(); } + else if(enable_wmote_roll && m_btnMgr.selected(m_mainBtnQuit)) + { + _hideMain(); + if(!_Source()) //Different source selected + LoadView(); + else + _showMain(); + continue; + } } if(!BTN_B_HELD) @@ -659,7 +668,7 @@ int CMenu::main(void) _initCF(); } } - else + else if(!enable_wmote_roll) { if(!SourceMenuTimeout) SourceMenuTimeout = time(0);