also support NANDEmu-Boot apps-directory additionally to boot253

This commit is contained in:
Christopher Roy Bratusek 2012-03-14 15:58:26 +01:00
parent a2a02d1e3f
commit afeda6b904
2 changed files with 14 additions and 2 deletions

View File

@ -250,11 +250,21 @@ main(int argc, char *argv[])
LoadHomebrew ("sd1:/apps/boot253/boot.dol");
BootHomebrew ();
}
else if (opendir(check_path("sd1:/apps/NANDEmu-Boot").c_str()) != NULL)
{
LoadHomebrew ("sd1:/apps/NANDEmu-Boot/boot.dol");
BootHomebrew ();
}
else if (opendir(check_path("usb1:/apps/boot253").c_str()) != NULL)
{
LoadHomebrew ("usb1:/apps/boot253/boot.dol");
BootHomebrew ();
}
else if (opendir(check_path("usb1:/apps/NANDEmu-Boot").c_str()) != NULL)
{
LoadHomebrew ("usb1:/apps/NANDEmu-Boot/boot.dol");
Boothomebrew ();
}
}
if(PowerOff != -1)

View File

@ -3,8 +3,10 @@
- installer no longer crashes when IOS253 exists
- ISO253 is no more selectable as IOS to load an app with
- added support for loading the NAND-Emu (Sorg)
(must be either sd:/apps/boot253/boot.dol or
usb:/apps/boot253/boot.dol)
(must be one of sd:/apps/boot253/boot.dol
sd:/apps/NANDEmu-Boot/boot.dol
usb:/apps/boot253/boot.dol
usb:/apps/NANDEmu-Boot/boot.dol)
- Basic (= non-working) support for Homebew on DVD
- No longer show the HBC if it's installed
- compiled with devkitppc 25-1 and libogc 1.8.10