mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-23 19:59:16 +01:00
- fix for 'auto' game IOS option. in v5.5.4 'auto' causes the game to use a d2x cios base 38 if you have it installed, which prevents game from booting. this fix prevents this from happening.
This commit is contained in:
parent
14af9a9cf3
commit
a0ef54af49
Binary file not shown.
BIN
out/boot.dol
BIN
out/boot.dol
Binary file not shown.
Before Width: | Height: | Size: 4.4 MiB After Width: | Height: | Size: 4.4 MiB |
@ -1,6 +1,6 @@
|
|||||||
|
|
||||||
#define APP_NAME "WiiFlow WFL"
|
#define APP_NAME "WiiFlow WFL"
|
||||||
#define APP_VERSION "5.5.4"
|
#define APP_VERSION "5.5.4-1"
|
||||||
|
|
||||||
#define APP_DATA_DIR "wiiflow"
|
#define APP_DATA_DIR "wiiflow"
|
||||||
#define APPS_DIR "apps/wiiflow"
|
#define APPS_DIR "apps/wiiflow"
|
||||||
|
@ -777,7 +777,7 @@ int CMenu::_loadGameIOS(u8 gameIOS, int userIOS, const char *id, bool RealNAND_C
|
|||||||
{
|
{
|
||||||
for(CIOSItr itr = _cios_base.begin(); itr != _cios_base.end(); itr++)
|
for(CIOSItr itr = _cios_base.begin(); itr != _cios_base.end(); itr++)
|
||||||
{
|
{
|
||||||
if(itr->first > gameIOS)//compare bases
|
if(itr->first > gameIOS && itr->first != 38)//compare bases
|
||||||
{
|
{
|
||||||
slot = itr->second;// set to cios slot
|
slot = itr->second;// set to cios slot
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user