From 2cb384e4a5af81db1aa27e079267db3f2f318677 Mon Sep 17 00:00:00 2001 From: Fangal-Airbag <77993079+Fangal-Airbag@users.noreply.github.com> Date: Wed, 31 Aug 2022 21:06:24 -0400 Subject: [PATCH] Add option to skip title patcher when loading module Same as before just hold ZL on the gamepad and both the Nimble patches and the title patcher install will be skipped! --- source/main.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/source/main.c b/source/main.c index 2b3e0c2..97bcec7 100644 --- a/source/main.c +++ b/source/main.c @@ -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 { @@ -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