Let mass detector add all hits, instead of only the first one

svn-id: r31307
This commit is contained in:
Max Horn 2008-03-29 23:20:53 +00:00
parent 25b9a8a1cb
commit 85f8d617b0

View File

@ -134,14 +134,13 @@ void MassAddDialog::handleTickle() {
// Run the detector on the dir // Run the detector on the dir
GameList candidates(PluginManager::instance().detectGames(files)); GameList candidates(PluginManager::instance().detectGames(files));
if (candidates.size() >= 1) { // Just add all detected games / game variants. If we get more than one,
// At least one match was found. For now we just take the first one... // that either means the directory contains multiple games, or the detector
// a more sophisticated solution would do something more clever here, // could not fully determine which game variant it was seeing. In either
// e.g. ask the user which one to pick (make sure to display the // case, let the user choose which entries he wants to keep.
// path, too). for (GameList::const_iterator cand = candidates.begin(); cand != candidates.end(); ++cand) {
GameDescriptor result = candidates[0]; GameDescriptor result = *cand;
result["path"] = dir.getPath(); result["path"] = dir.getPath();
_games.push_back(result); _games.push_back(result);
} }