aboutsummaryrefslogtreecommitdiff
path: root/engines/cine
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/cine
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/cine')
-rw-r--r--engines/cine/detection.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/cine/detection.cpp b/engines/cine/detection.cpp
index 5e1ffadb1b..ec01e8734d 100644
--- a/engines/cine/detection.cpp
+++ b/engines/cine/detection.cpp
@@ -80,12 +80,12 @@ static const ADExtraGuiOptionsMap optionsList[] = {
class CineMetaEngine : public AdvancedMetaEngine {
public:
CineMetaEngine() : AdvancedMetaEngine(Cine::gameDescriptions, sizeof(Cine::CINEGameDescription), cineGames, optionsList) {
- _singleid = "cine";
- _guioptions = GUIO2(GUIO_NOSPEECH, GAMEOPTION_ORIGINAL_SAVELOAD);
+ _singleId = "cine";
+ _guiOptions = GUIO2(GUIO_NOSPEECH, GAMEOPTION_ORIGINAL_SAVELOAD);
}
- virtual GameDescriptor findGame(const char *gameid) const {
- return Engines::findGameID(gameid, _gameids, obsoleteGameIDsTable);
+ virtual GameDescriptor findGame(const char *gameId) const {
+ return Engines::findGameID(gameId, _gameIds, obsoleteGameIDsTable);
}
virtual const char *getName() const {