*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:
dimok321 2011-07-26 19:34:16 +00:00
parent 372717aaa0
commit 999f97f25a
3 changed files with 3 additions and 12 deletions

View File

@ -2,8 +2,8 @@
<app version="1"> <app version="1">
<name> USB Loader GX</name> <name> USB Loader GX</name>
<coder>USB Loader GX Team</coder> <coder>USB Loader GX Team</coder>
<version>2.2 r1106</version> <version>2.2 r1107</version>
<release_date>201107260730</release_date> <release_date>201107260854</release_date>
<!-- // remove this line to enable arguments <!-- // remove this line to enable arguments
<arguments> <arguments>
<arg>--ios=250</arg> <arg>--ios=250</arg>

File diff suppressed because one or more lines are too long

View File

@ -86,9 +86,6 @@ static s32 Nand_Mount(nandDevice *dev)
static s32 Nand_Unmount(nandDevice *dev) static s32 Nand_Unmount(nandDevice *dev)
{ {
if(!IosLoader::IsD2X())
return -1;
s32 fd, ret; s32 fd, ret;
// Open FAT module // Open FAT module
@ -170,9 +167,6 @@ static s32 Nand_Disable(void)
s32 Enable_Emu(int selection) s32 Enable_Emu(int selection)
{ {
if(!IosLoader::IsD2X())
return -1;
if(mounted != 0) if(mounted != 0)
return -1; return -1;
@ -200,9 +194,6 @@ s32 Enable_Emu(int selection)
s32 Disable_Emu() s32 Disable_Emu()
{ {
if(!IosLoader::IsD2X())
return -1;
if(mounted==0) if(mounted==0)
return 0; return 0;