From 9a6bd14667592119e01a2ea354bb6165e9590b66 Mon Sep 17 00:00:00 2001 From: Jack Andersen Date: Mon, 25 Jan 2016 11:50:28 -1000 Subject: [PATCH] Fix typo --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6428a47..855704c 100644 --- a/README.md +++ b/README.md @@ -52,11 +52,11 @@ auto progFunc = [&](size_t idx, const NOD::SystemString& name, size_t bytes) /* Making a GCN image */ NOD::DiscBuilderGCN b(isoOutPath, gameID, gameTitle, dolLoadAddress, progFunc); -ret = b.buildFromDirectory(fsRootDirPath, boolDolPath, apploaderPath); +ret = b.buildFromDirectory(fsRootDirPath, bootDolPath, apploaderPath); /* Making a Wii image */ NOD::DiscBuilderWii b(isoOutPath, gameID, gameTitle, dualLayer, progFunc); -ret = b.buildFromDirectory(fsRootDirPath, boolDolPath, apploaderPath, partitionHeadPath); +ret = b.buildFromDirectory(fsRootDirPath, bootDolPath, apploaderPath, partitionHeadPath); ``` Wii images are fakesigned using a commonly-applied [signing bug](http://wiibrew.org/wiki/Signing_bug).