aboutsummaryrefslogtreecommitdiff
path: root/engines/groovie
diff options
context:
space:
mode:
authorJohannes Schickel2016-03-08 18:30:58 +0100
committerJohannes Schickel2016-03-08 19:01:13 +0100
commit0b6befdcc5f5f8d6d5deb2831104fb7abc0f7466 (patch)
tree553ae93bf1e5cd903c0eb7a0f2c03cb4da7fe748 /engines/groovie
parent3ec225f12726171a0b3e69fe305ff5354ea3489c (diff)
downloadscummvm-rg350-0b6befdcc5f5f8d6d5deb2831104fb7abc0f7466.tar.gz
scummvm-rg350-0b6befdcc5f5f8d6d5deb2831104fb7abc0f7466.tar.bz2
scummvm-rg350-0b6befdcc5f5f8d6d5deb2831104fb7abc0f7466.zip
ENGINES: Make variable names of AdvancedMetaEngine conform to our guidelines.
_singleid -> _singleId _gameids -> _gameIds _guioptions -> _guiOptions
Diffstat (limited to 'engines/groovie')
-rw-r--r--engines/groovie/detection.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/groovie/detection.cpp b/engines/groovie/detection.cpp
index a249b66858..b12e264a57 100644
--- a/engines/groovie/detection.cpp
+++ b/engines/groovie/detection.cpp
@@ -322,7 +322,7 @@ static const ADExtraGuiOptionsMap optionsList[] = {
class GroovieMetaEngine : public AdvancedMetaEngine {
public:
GroovieMetaEngine() : AdvancedMetaEngine(gameDescriptions, sizeof(GroovieGameDescription), groovieGames, optionsList) {
- _singleid = "groovie";
+ _singleId = "groovie";
// Use kADFlagUseExtraAsHint in order to distinguish the 11th hour from
// its "Making of" as well as the Clandestiny Trailer; they all share
@@ -333,7 +333,7 @@ public:
// to the detection entries. In the latter case, this TODO should be
// replaced with an according explanation.
_flags = kADFlagUseExtraAsHint;
- _guioptions = GUIO3(GUIO_NOSUBTITLES, GUIO_NOSFX, GUIO_NOASPECT);
+ _guiOptions = GUIO3(GUIO_NOSUBTITLES, GUIO_NOSFX, GUIO_NOASPECT);
// Need MIDI directory to detect 11H Mac Installed
_maxScanDepth = 2;