mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-30 15:14:18 +01:00
-fixed another emu nand save emu bug
This commit is contained in:
parent
4cb521304f
commit
c05d9e4fd1
@ -1066,8 +1066,7 @@ void CMenu::_launchChannel(dir_discHdr *hdr)
|
|||||||
m_gcfg1.setInt("PLAYCOUNT", id, m_gcfg1.getInt("PLAYCOUNT", id, 0) + 1);
|
m_gcfg1.setInt("PLAYCOUNT", id, m_gcfg1.getInt("PLAYCOUNT", id, 0) + 1);
|
||||||
m_gcfg1.setUInt("LASTPLAYED", id, time(NULL));
|
m_gcfg1.setUInt("LASTPLAYED", id, time(NULL));
|
||||||
|
|
||||||
string emuPath;
|
string emuPath = m_cfg.getString(CHANNEL_DOMAIN, "path");
|
||||||
int emuPartition = _FindEmuPart(emuPath, false);
|
|
||||||
int emulate_mode = min(max(0, m_cfg.getInt(CHANNEL_DOMAIN, "emulation", 1)), (int)ARRAY_SIZE(CMenu::_NandEmu) - 1);
|
int emulate_mode = min(max(0, m_cfg.getInt(CHANNEL_DOMAIN, "emulation", 1)), (int)ARRAY_SIZE(CMenu::_NandEmu) - 1);
|
||||||
|
|
||||||
int userIOS = m_gcfg2.getInt(id, "ios", 0);
|
int userIOS = m_gcfg2.getInt(id, "ios", 0);
|
||||||
@ -1095,8 +1094,8 @@ void CMenu::_launchChannel(dir_discHdr *hdr)
|
|||||||
while(1) usleep(500);
|
while(1) usleep(500);
|
||||||
}
|
}
|
||||||
NANDemuView = true;
|
NANDemuView = true;
|
||||||
NandHandle.SetNANDEmu(emuPartition); /* Init NAND Emu */
|
NandHandle.SetNANDEmu(currentPartition); /* Init NAND Emu */
|
||||||
NandHandle.SetPaths(emuPath.c_str(), DeviceName[emuPartition]);
|
NandHandle.SetPaths(emuPath.c_str(), DeviceName[currentPartition]);
|
||||||
}
|
}
|
||||||
gameIOS = ChannelHandle.GetRequestedIOS(gameTitle);
|
gameIOS = ChannelHandle.GetRequestedIOS(gameTitle);
|
||||||
if(_loadIOS(gameIOS, userIOS, id, !NAND_Emu) == LOAD_IOS_FAILED)
|
if(_loadIOS(gameIOS, userIOS, id, !NAND_Emu) == LOAD_IOS_FAILED)
|
||||||
|
Loading…
Reference in New Issue
Block a user