mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-04 18:45:05 +01:00
*Removed check for d2x cIOS right before activation of NAND Emu because it is invalid at that place in code (fix for nand emu)
This commit is contained in:
parent
372717aaa0
commit
999f97f25a
@ -2,8 +2,8 @@
|
||||
<app version="1">
|
||||
<name> USB Loader GX</name>
|
||||
<coder>USB Loader GX Team</coder>
|
||||
<version>2.2 r1106</version>
|
||||
<release_date>201107260730</release_date>
|
||||
<version>2.2 r1107</version>
|
||||
<release_date>201107260854</release_date>
|
||||
<!-- // remove this line to enable arguments
|
||||
<arguments>
|
||||
<arg>--ios=250</arg>
|
||||
|
File diff suppressed because one or more lines are too long
@ -86,9 +86,6 @@ static s32 Nand_Mount(nandDevice *dev)
|
||||
|
||||
static s32 Nand_Unmount(nandDevice *dev)
|
||||
{
|
||||
if(!IosLoader::IsD2X())
|
||||
return -1;
|
||||
|
||||
s32 fd, ret;
|
||||
|
||||
// Open FAT module
|
||||
@ -170,9 +167,6 @@ static s32 Nand_Disable(void)
|
||||
|
||||
s32 Enable_Emu(int selection)
|
||||
{
|
||||
if(!IosLoader::IsD2X())
|
||||
return -1;
|
||||
|
||||
if(mounted != 0)
|
||||
return -1;
|
||||
|
||||
@ -200,9 +194,6 @@ s32 Enable_Emu(int selection)
|
||||
|
||||
s32 Disable_Emu()
|
||||
{
|
||||
if(!IosLoader::IsD2X())
|
||||
return -1;
|
||||
|
||||
if(mounted==0)
|
||||
return 0;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user