mirror of
https://github.com/Xpl0itU/WiiUDownloader.git
synced 2025-05-24 03:57:12 -04:00
Add support for Wii's certificate generation
This commit is contained in:
parent
a6ccbb2473
commit
e93a238be9
5 changed files with 29 additions and 46 deletions
|
@ -184,7 +184,7 @@ func DownloadTitle(titleID, outputDirectory string, doDecryption bool, progressR
|
|||
return err
|
||||
}
|
||||
|
||||
tmd, err := parseTMD(tmdData)
|
||||
tmd, err := ParseTMD(tmdData)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
@ -211,7 +211,7 @@ func DownloadTitle(titleID, outputDirectory string, doDecryption bool, progressR
|
|||
|
||||
progressReporter.SetDownloadSize(int64(titleSize))
|
||||
|
||||
cert, err := GenerateCert(tmdData, tmd.ContentCount, progressReporter, client)
|
||||
cert, err := GenerateCert(tmd, progressReporter, client)
|
||||
if err != nil {
|
||||
if progressReporter.Cancelled() {
|
||||
return nil
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue