From 672a46b84f478abbc7d28fd493ed3ae1629fe677 Mon Sep 17 00:00:00 2001 From: Filippos Karapetis Date: Wed, 6 Aug 2014 15:08:57 +0300 Subject: [PATCH] DETECTOR: Do not show the zero matched size for illegitimate copies --- engines/advancedDetector.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/advancedDetector.cpp b/engines/advancedDetector.cpp index fa23f5fa1ad..72629a833e5 100644 --- a/engines/advancedDetector.cpp +++ b/engines/advancedDetector.cpp @@ -122,7 +122,7 @@ bool cleanupPirated(ADGameDescList &matched) { // We ruled out all variants and now have nothing if (matched.empty()) { - warning("Illegitimate game copy detected. We give no support in such cases %d", matched.size()); + warning("Illegitimate game copy detected. We provide no support in such cases"); return true; } }