diff options
author | Bastien Bouclet | 2018-05-28 18:55:47 +0200 |
---|---|---|
committer | Bastien Bouclet | 2018-05-28 18:55:47 +0200 |
commit | 106416c857ad1b29a20ef821cc3c1e8b91b2d034 (patch) | |
tree | 2a9ccc302992f5ed9d19a9a3137e9d83f964157d /backends/platform/dc | |
parent | 2686b37e940ed73e002a1a8e167a20c5c655487e (diff) | |
download | scummvm-rg350-106416c857ad1b29a20ef821cc3c1e8b91b2d034.tar.gz scummvm-rg350-106416c857ad1b29a20ef821cc3c1e8b91b2d034.tar.bz2 scummvm-rg350-106416c857ad1b29a20ef821cc3c1e8b91b2d034.zip |
DC: Fix the build after the detection result rework
Diffstat (limited to 'backends/platform/dc')
-rw-r--r-- | backends/platform/dc/selector.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/backends/platform/dc/selector.cpp b/backends/platform/dc/selector.cpp index 3192f3e8cf..914d683334 100644 --- a/backends/platform/dc/selector.cpp +++ b/backends/platform/dc/selector.cpp @@ -271,7 +271,8 @@ static int findGames(Game *games, int max, bool use_ini) } if (!use_ini) { - DetectedGames candidates = EngineMan.detectGames(files); + DetectionResults detectionResults = EngineMan.detectGames(files); + DetectedGames candidates = detectionResults.listRecognizedGames(); for (DetectedGames::const_iterator ge = candidates.begin(); ge != candidates.end(); ++ge) |