This commit is contained in:
Jack Andersen 2016-01-25 11:50:28 -10:00
parent 69fa31c9a7
commit 9a6bd14667
1 changed files with 2 additions and 2 deletions

View File

@ -52,11 +52,11 @@ auto progFunc = [&](size_t idx, const NOD::SystemString& name, size_t bytes)
/* Making a GCN image */ /* Making a GCN image */
NOD::DiscBuilderGCN b(isoOutPath, gameID, gameTitle, dolLoadAddress, progFunc); NOD::DiscBuilderGCN b(isoOutPath, gameID, gameTitle, dolLoadAddress, progFunc);
ret = b.buildFromDirectory(fsRootDirPath, boolDolPath, apploaderPath); ret = b.buildFromDirectory(fsRootDirPath, bootDolPath, apploaderPath);
/* Making a Wii image */ /* Making a Wii image */
NOD::DiscBuilderWii b(isoOutPath, gameID, gameTitle, dualLayer, progFunc); 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). Wii images are fakesigned using a commonly-applied [signing bug](http://wiibrew.org/wiki/Signing_bug).