mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 09:05:06 +01:00
-forgot to set channel partition to NAND in global config
when in neek mode
This commit is contained in:
parent
0857cdde64
commit
5407b34ffa
@ -62,7 +62,7 @@ void CMenu::_showConfig(void)
|
|||||||
m_btnMgr.show(m_configLblDownload);
|
m_btnMgr.show(m_configLblDownload);
|
||||||
m_btnMgr.show(m_configBtnDownload);
|
m_btnMgr.show(m_configBtnDownload);
|
||||||
|
|
||||||
bool disable = m_cfg.getBool("NAND", "disable", true) && m_current_view == COVERFLOW_CHANNEL && !m_tempView;
|
bool disable = (m_cfg.getBool("NAND", "disable", true) || cIOSInfo::neek2o()) && m_current_view == COVERFLOW_CHANNEL && !m_tempView;
|
||||||
char *partitionname = disable ? (char *)"NAND" : (char *)DeviceName[m_tempView ? m_cfg.getInt("GAMES", "savepartition", 0) : m_cfg.getInt(_domainFromView(), "partition", 0)];
|
char *partitionname = disable ? (char *)"NAND" : (char *)DeviceName[m_tempView ? m_cfg.getInt("GAMES", "savepartition", 0) : m_cfg.getInt(_domainFromView(), "partition", 0)];
|
||||||
|
|
||||||
for(u8 i = 0; strncmp((const char *)&partitionname[i], "\0", 1) != 0; i++)
|
for(u8 i = 0; strncmp((const char *)&partitionname[i], "\0", 1) != 0; i++)
|
||||||
@ -215,7 +215,7 @@ int CMenu::_config1(void)
|
|||||||
|
|
||||||
if (currentPartition != bCurrentPartition)
|
if (currentPartition != bCurrentPartition)
|
||||||
{
|
{
|
||||||
bool disable = m_cfg.getBool("NAND", "disable", true) && m_current_view == COVERFLOW_CHANNEL && !m_tempView;
|
bool disable = (m_cfg.getBool("NAND", "disable", true) || cIOSInfo::neek2o()) && m_current_view == COVERFLOW_CHANNEL && !m_tempView;
|
||||||
|
|
||||||
if(!disable)
|
if(!disable)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user