Only show network install option when in installation mode.

This commit is contained in:
Steven Smith 2015-04-13 22:17:26 -07:00
parent f2dc16c810
commit f14a38e604

View File

@ -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";
}