From 580f080aaf79c1d54c7ef8c2c5a62338ff7db6c0 Mon Sep 17 00:00:00 2001 From: Sude Date: Sat, 16 Mar 2013 03:41:55 +0200 Subject: [PATCH] Show update status for installers when listing details --- src/downloader.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/downloader.cpp b/src/downloader.cpp index 8a9b91d..0ffdea0 100644 --- a/src/downloader.cpp +++ b/src/downloader.cpp @@ -275,6 +275,7 @@ void Downloader::listGames() std::cout << "\tid: " << games[i].installers[j].id << std::endl << "\tpath: " << games[i].installers[j].path << std::endl << "\tsize: " << games[i].installers[j].size << std::endl + << "\tupdated: " << (games[i].installers[j].updated ? "True" : "False") << std::endl << std::endl; } }