diff options
| author | Max Horn | 2008-07-29 00:49:44 +0000 |
|---|---|---|
| committer | Max Horn | 2008-07-29 00:49:44 +0000 |
| commit | e1520c6462b0cd465ef744a6af5a709abaea635d (patch) | |
| tree | 700e9656bf6efb1b2f61cc453264b90cb076ebe6 | |
| parent | 4a9104515c1ddc5ac7aee3fa075f3c43b9752898 (diff) | |
| download | scummvm-rg350-e1520c6462b0cd465ef744a6af5a709abaea635d.tar.gz scummvm-rg350-e1520c6462b0cd465ef744a6af5a709abaea635d.tar.bz2 scummvm-rg350-e1520c6462b0cd465ef744a6af5a709abaea635d.zip | |
Changed output of --test-detector: multiple hits with same gameid now only are a warning, not a failure
svn-id: r33387
| -rw-r--r-- | base/commandLine.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/base/commandLine.cpp b/base/commandLine.cpp index fa96e30b9a..ea0e1465b6 100644 --- a/base/commandLine.cpp +++ b/base/commandLine.cpp @@ -685,9 +685,9 @@ static void runDetectorTest() { failure++; } else if (candidates.size() > 1) { if (gameidDiffers) { - printf(" FAILURE: Multiple games detected, some/all with wrong gameid\n"); + printf(" WARNING: Multiple games detected, some/all with wrong gameid\n"); } else { - printf(" FAILURE: Multiple games detected, but all have the same gameid\n"); + printf(" WARNING: Multiple games detected, but all have the same gameid\n"); } failure++; } else if (gameidDiffers) { |
