From 70a2cfeebd901edcc76a38417f5db86b1407d42d Mon Sep 17 00:00:00 2001 From: Steven Smith Date: Sat, 11 Apr 2015 20:21:34 -0700 Subject: [PATCH] Change exit button to select. --- source/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/main.cpp b/source/main.cpp index 6b6fb6d..b70a931 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -27,7 +27,7 @@ int main(int argc, char **argv) { bool netInstall = false; u64 freeSpace = fsGetFreeSpace(destination); auto onLoop = [&]() { - if(ninjhax && inputIsPressed(BUTTON_START)) { + if(ninjhax && inputIsPressed(BUTTON_SELECT)) { exit = true; return true; } @@ -68,7 +68,7 @@ int main(int argc, char **argv) { stream << "L - Switch Destination, R - Switch Mode" << "\n"; stream << "Y - Receive an app over the network" << "\n"; if(ninjhax) { - stream << "START - Exit to launcher" << "\n"; + stream << "SELECT - Exit to launcher" << "\n"; } std::string str = stream.str();