*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">
<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

View File

@ -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;