diff options
author | Johannes Schickel | 2016-03-08 18:30:58 +0100 |
---|---|---|
committer | Johannes Schickel | 2016-03-08 19:01:13 +0100 |
commit | 0b6befdcc5f5f8d6d5deb2831104fb7abc0f7466 (patch) | |
tree | 553ae93bf1e5cd903c0eb7a0f2c03cb4da7fe748 /engines/gob | |
parent | 3ec225f12726171a0b3e69fe305ff5354ea3489c (diff) | |
download | scummvm-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/gob')
-rw-r--r-- | engines/gob/detection/detection.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/gob/detection/detection.cpp b/engines/gob/detection/detection.cpp index 3b26f63c39..b0aa78f416 100644 --- a/engines/gob/detection/detection.cpp +++ b/engines/gob/detection/detection.cpp @@ -33,7 +33,7 @@ class GobMetaEngine : public AdvancedMetaEngine { public: GobMetaEngine(); - virtual GameDescriptor findGame(const char *gameid) const; + virtual GameDescriptor findGame(const char *gameId) const; virtual const ADGameDescription *fallbackDetect(const FileMap &allFiles, const Common::FSList &fslist) const; @@ -55,12 +55,12 @@ private: GobMetaEngine::GobMetaEngine() : AdvancedMetaEngine(Gob::gameDescriptions, sizeof(Gob::GOBGameDescription), gobGames) { - _singleid = "gob"; - _guioptions = GUIO1(GUIO_NOLAUNCHLOAD); + _singleId = "gob"; + _guiOptions = GUIO1(GUIO_NOLAUNCHLOAD); } -GameDescriptor GobMetaEngine::findGame(const char *gameid) const { - return Engines::findGameID(gameid, _gameids, obsoleteGameIDsTable); +GameDescriptor GobMetaEngine::findGame(const char *gameId) const { + return Engines::findGameID(gameId, _gameIds, obsoleteGameIDsTable); } const ADGameDescription *GobMetaEngine::fallbackDetect(const FileMap &allFiles, const Common::FSList &fslist) const { |