From f14a38e60470fee2ddc6b117b79271a9797026f8 Mon Sep 17 00:00:00 2001 From: Steven Smith Date: Mon, 13 Apr 2015 22:17:26 -0700 Subject: [PATCH] Only show network install option when in installation mode. --- source/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/main.cpp b/source/main.cpp index f34a19f..306df19 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -68,7 +68,7 @@ int main(int argc, char **argv) { } } - if(inputIsPressed(BUTTON_Y)) { + if(mode == INSTALL_CIA && inputIsPressed(BUTTON_Y)) { netInstall = true; breakLoop = true; } @@ -79,11 +79,11 @@ int main(int argc, char **argv) { stream << "L - Switch Destination, R - Switch Mode" << "\n"; if(mode == INSTALL_CIA) { stream << "X - Install all CIAs in the current directory" << "\n"; + stream << "Y - Receive an app over the network" << "\n"; } else if(mode == DELETE_CIA) { stream << "X - Delete all CIAs in the current directory" << "\n"; } - stream << "Y - Receive an app over the network" << "\n"; if(ninjhax) { stream << "START - Exit to launcher" << "\n"; }