[Scummvm-git-logs] scummvm master -> 106416c857ad1b29a20ef821cc3c1e8b91b2d034

bgK bastien.bouclet at gmail.com
Mon May 28 18:56:58 CEST 2018


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
106416c857 DC: Fix the build after the detection result rework


Commit: 106416c857ad1b29a20ef821cc3c1e8b91b2d034
    https://github.com/scummvm/scummvm/commit/106416c857ad1b29a20ef821cc3c1e8b91b2d034
Author: Bastien Bouclet (bastien.bouclet at gmail.com)
Date: 2018-05-28T18:55:47+02:00

Commit Message:
DC: Fix the build after the detection result rework

Changed paths:
    backends/platform/dc/selector.cpp


diff --git a/backends/platform/dc/selector.cpp b/backends/platform/dc/selector.cpp
index 3192f3e..914d683 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)





More information about the Scummvm-git-logs mailing list