From e0e461368f04c53596315b0d8a962e581364ab11 Mon Sep 17 00:00:00 2001 From: Steven Smith Date: Sun, 1 Feb 2015 18:05:40 -0800 Subject: [PATCH] Remove name printing from testing. --- source/main.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/source/main.cpp b/source/main.cpp index 990cdb1..7d002bb 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -67,7 +67,6 @@ void ui_display_result(bool install, bool state) { bool ui_prompt_operation(Mode mode, std::string name) { std::stringstream stream; stream << (mode == INSTALL ? "Install" : "Delete") << " the selected title?" << "\n"; - stream << name << "\n"; stream << "Press A to confirm, B to cancel." << "\n"; std::string str = stream.str(); while(platform_is_running()) {