First phase of detection-related plugins interface improvements. Now plugins
return StringMap instead of fixed list of parameters. This adds great flexibility. Current patch should not alter any functionality, i.e. if there are regressions, submit a report. Phase 2 will benefit from these changes and will come later. svn-id: r25134
This commit is contained in:
parent
47b1321d15
commit
cd8a5f3a98
24 changed files with 143 additions and 160 deletions
|
@ -30,7 +30,7 @@
|
|||
#include "parallaction/parallaction.h"
|
||||
|
||||
namespace Parallaction {
|
||||
static DetectedGameList GAME_detectGames(const FSList &fslist);
|
||||
static GameList GAME_detectGames(const FSList &fslist);
|
||||
}
|
||||
|
||||
static const PlainGameDescriptor parallactionGames[] = {
|
||||
|
@ -84,7 +84,7 @@ bool Parallaction::detectGame() {
|
|||
return true;
|
||||
}
|
||||
|
||||
DetectedGameList GAME_detectGames(const FSList &fslist) {
|
||||
GameList GAME_detectGames(const FSList &fslist) {
|
||||
return Common::ADVANCED_DETECTOR_DETECT_GAMES_FUNCTION(
|
||||
fslist,
|
||||
(const byte *)gameDescriptions,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue