mirror of
https://gitlab.com/Nanolx/homebrewfilter.git
synced 2024-11-01 15:15:09 +01:00
also support NANDEmu-Boot apps-directory additionally to boot253
This commit is contained in:
parent
a2a02d1e3f
commit
afeda6b904
@ -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)
|
||||
|
6
updates
6
updates
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user