From 0c89f13b102183ce4eb8ab8e51c7fc1bbb50cf59 Mon Sep 17 00:00:00 2001 From: Sude Date: Wed, 1 Jun 2016 14:29:16 +0300 Subject: [PATCH] Fix indentation Fixes the indentation in 60fb4db339066bab7616d8ef7a05c5f0679c71f6 --- src/downloader.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/downloader.cpp b/src/downloader.cpp index 921d623..e4b573a 100644 --- a/src/downloader.cpp +++ b/src/downloader.cpp @@ -2101,12 +2101,12 @@ void Downloader::checkOrphans() { // Check dlcs for (unsigned int k = 0; k < games[i].dlcs.size(); ++k) { - bFoundFile = isPresent(games[i].dlcs[k].installers, filepath_vector[j], config.blacklist) - || isPresent(games[i].dlcs[k].extras, filepath_vector[j], config.blacklist) - || isPresent(games[i].dlcs[k].patches, filepath_vector[j], config.blacklist) - || isPresent(games[i].dlcs[k].languagepacks, filepath_vector[j], config.blacklist); - if(bFoundFile) - break; + bFoundFile = isPresent(games[i].dlcs[k].installers, filepath_vector[j], config.blacklist) + || isPresent(games[i].dlcs[k].extras, filepath_vector[j], config.blacklist) + || isPresent(games[i].dlcs[k].patches, filepath_vector[j], config.blacklist) + || isPresent(games[i].dlcs[k].languagepacks, filepath_vector[j], config.blacklist); + if(bFoundFile) + break; } } if (!bFoundFile)