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/parallaction | |
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/parallaction')
-rw-r--r-- | engines/parallaction/detection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/parallaction/detection.cpp b/engines/parallaction/detection.cpp index 0c7ebb2b05..4c52990874 100644 --- a/engines/parallaction/detection.cpp +++ b/engines/parallaction/detection.cpp @@ -220,7 +220,7 @@ static const PARALLACTIONGameDescription gameDescriptions[] = { class ParallactionMetaEngine : public AdvancedMetaEngine { public: ParallactionMetaEngine() : AdvancedMetaEngine(Parallaction::gameDescriptions, sizeof(Parallaction::PARALLACTIONGameDescription), parallactionGames) { - _guioptions = GUIO1(GUIO_NOLAUNCHLOAD); + _guiOptions = GUIO1(GUIO_NOLAUNCHLOAD); } virtual const char *getName() const { |