From fb001253289cda214ae565d2e91f84e32c76806d Mon Sep 17 00:00:00 2001 From: "fix94.1" Date: Mon, 24 Dec 2012 12:19:30 +0000 Subject: [PATCH] -small nand emu fix for d2x cios on game boot --- source/channel/nand.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/source/channel/nand.cpp b/source/channel/nand.cpp index f1d7c729..d491dce1 100644 --- a/source/channel/nand.cpp +++ b/source/channel/nand.cpp @@ -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); } /*