aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorJoseph Davies2016-04-14 04:33:41 -0700
committerEugene Sandulenko2016-08-03 23:40:36 +0200
commit14450b017f7d792b0bfb9e524608437b4e79eb33 (patch)
tree522399e5c95c35d6e7224f0c8ed445e8614a3338 /engines
parent04ea338dacb0d85de5cb1bcc8410bf47e2c80e78 (diff)
downloadscummvm-rg350-14450b017f7d792b0bfb9e524608437b4e79eb33.tar.gz
scummvm-rg350-14450b017f7d792b0bfb9e524608437b4e79eb33.tar.bz2
scummvm-rg350-14450b017f7d792b0bfb9e524608437b4e79eb33.zip
DIRECTOR: Rename variables to match changes to AdvancedMetaEngine.
Follows guideline-conforming changes in 0b6befdcc5f5f.
Diffstat (limited to 'engines')
-rw-r--r--engines/director/detection.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/director/detection.cpp b/engines/director/detection.cpp
index 8479abc058..f31535e1b4 100644
--- a/engines/director/detection.cpp
+++ b/engines/director/detection.cpp
@@ -88,7 +88,7 @@ static const char *directoryGlobs[] = {
class DirectorMetaEngine : public AdvancedMetaEngine {
public:
DirectorMetaEngine() : AdvancedMetaEngine(Director::gameDescriptions, sizeof(Director::DirectorGameDescription), directorGames) {
- _singleid = "director";
+ _singleId = "director";
_maxScanDepth = 2,
_directoryGlobs = directoryGlobs;
}
@@ -135,12 +135,12 @@ const ADGameDescription *DirectorMetaEngine::fallbackDetect(const FileMap &allFi
// reset fallback description
Director::DirectorGameDescription *desc = &s_fallbackDesc;
- desc->desc.gameid = "director";
+ desc->desc.gameId = "director";
desc->desc.extra = "";
desc->desc.language = Common::UNK_LANG;
desc->desc.flags = ADGF_NO_FLAGS;
desc->desc.platform = Common::kPlatformWindows;
- desc->desc.guioptions = GUIO0();
+ desc->desc.guiOptions = GUIO0();
desc->desc.filesDescriptions[0].fileName = 0;
desc->version = 0;
desc->gameID = Director::GID_GENERIC;