Skip to content

Commit

Permalink
Merge pull request #7 from Fangal-Airbag/main
Browse files Browse the repository at this point in the history
Add option to skip title patcher when loading module
  • Loading branch information
ashquarky authored Sep 1, 2022
2 parents 09c0d81 + 2cb384e commit cd42ec8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions source/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ int main(int argc, char** argv)

if (status.hold & VPAD_BUTTON_ZL)
{
log("Nimble patches skipped.");
log("Nimble patches and title patcher install skipped.");
}
else
{
Expand All @@ -111,12 +111,12 @@ int main(int argc, char** argv)
{
log("Nimble patches failed!");
}
}

log("Installing title patcher...");
ret = install_title_patcher();
if (ret < 0) {
log("Title patcher install failed!");
log("Installing title patcher...");
ret = install_title_patcher();
if (ret < 0) {
log("Title patcher install failed!");
}
}

#ifdef DEBUG
Expand Down

0 comments on commit cd42ec8

Please sign in to comment.