mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2025-02-25 08:13:33 +01:00
- restored the option for source menu/flow on startup. manually edit wiiflow_lite.ini and set the line source_on_start=yes under [GENERAL]. if its not there then run and exit wiiflow lite once.
This commit is contained in:
parent
a2b7953b55
commit
7a5c6f5fec
BIN
out/boot.dol
BIN
out/boot.dol
Binary file not shown.
Before Width: | Height: | Size: 3.1 MiB After Width: | Height: | Size: 3.1 MiB |
@ -289,7 +289,6 @@ void CMenu::exitHandler(int ExitTo)
|
|||||||
|
|
||||||
int CMenu::main(void)
|
int CMenu::main(void)
|
||||||
{
|
{
|
||||||
//cf_domain = "_COVERFLOW";
|
|
||||||
wstringEx curLetter;
|
wstringEx curLetter;
|
||||||
string prevTheme = m_cfg.getString("GENERAL", "theme", "default");
|
string prevTheme = m_cfg.getString("GENERAL", "theme", "default");
|
||||||
parental_homebrew = m_cfg.getBool(HOMEBREW_DOMAIN, "parental", false);
|
parental_homebrew = m_cfg.getBool(HOMEBREW_DOMAIN, "parental", false);
|
||||||
@ -299,6 +298,7 @@ int CMenu::main(void)
|
|||||||
show_gamecube = m_show_gc;
|
show_gamecube = m_show_gc;
|
||||||
m_allow_random = m_cfg.getBool("GENERAL", "allow_b_on_questionmark", true);
|
m_allow_random = m_cfg.getBool("GENERAL", "allow_b_on_questionmark", true);
|
||||||
m_multisource = m_cfg.getBool("GENERAL", "multisource", false);
|
m_multisource = m_cfg.getBool("GENERAL", "multisource", false);
|
||||||
|
bool m_source_on_start = m_cfg.getBool("GENERAL", "source_on_start", false);
|
||||||
bool bheld = false;
|
bool bheld = false;
|
||||||
bool bUsed = false;
|
bool bUsed = false;
|
||||||
m_emuSaveNand = false;
|
m_emuSaveNand = false;
|
||||||
@ -342,8 +342,9 @@ int CMenu::main(void)
|
|||||||
/* Main Loop */
|
/* Main Loop */
|
||||||
_mainLoopCommon(true);
|
_mainLoopCommon(true);
|
||||||
//this will make the source menu/flow display. what happens when a sourceflow cover is selected is taken care of later.
|
//this will make the source menu/flow display. what happens when a sourceflow cover is selected is taken care of later.
|
||||||
if(bheld && !BTN_B_HELD)//if button b was held and now released
|
if((bheld && !BTN_B_HELD) || m_source_on_start)//if button b was held and now released
|
||||||
{
|
{
|
||||||
|
m_source_on_start = false;
|
||||||
bheld = false;
|
bheld = false;
|
||||||
if(bUsed)//if b button used for something don't show souce menu or sourceflow
|
if(bUsed)//if b button used for something don't show souce menu or sourceflow
|
||||||
bUsed = false;
|
bUsed = false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user