-small nand emu fix for d2x cios on game boot

This commit is contained in:
fix94.1 2012-12-24 12:19:30 +00:00
parent 0c9ea8ae10
commit fb00125328

View File

@ -1153,11 +1153,13 @@ void Nand::SetPaths(const char *emuPath, const char *currentPart)
break;
strncat(NandPath, &emuPath[i], 1);
}
gprintf("IOS Compatible NAND Path = %s\n", NandPath);
/* Our WiiFlow handle Path */
memset(&FullNANDPath, 0, sizeof(FullNANDPath));
strcat(FullNANDPath, fmt("%s:%s", currentPart, NandPath));
gprintf("Emu NAND Full Path = %s\n", FullNANDPath);
/* For d2x IOS Path */
if(strlen(NandPath) == 0) strcat(NandPath, "/");
gprintf("IOS Compatible NAND Path = %s\n", NandPath);
}
/*