From 7bd77a7dfe8a932ed639b796ccd721515af1d853 Mon Sep 17 00:00:00 2001 From: Sude Date: Sat, 16 Mar 2013 05:00:55 +0200 Subject: [PATCH] Don't list extras when doing update check --- src/downloader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/downloader.cpp b/src/downloader.cpp index f697cd8..c323157 100644 --- a/src/downloader.cpp +++ b/src/downloader.cpp @@ -282,7 +282,7 @@ void Downloader::listGames() } } // List extras - if (!config.bNoExtras) + if (!config.bNoExtras && !config.bUpdateCheck) { std::cout << "extras: " << std::endl; for (unsigned int j = 0; j < games[i].extras.size(); ++j)