Remove name printing from testing.

This commit is contained in:
Steven Smith 2015-02-01 18:05:40 -08:00
parent 1a682b420e
commit e0e461368f

View File

@ -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()) {