aboutsummaryrefslogtreecommitdiff
path: root/engines/sword1
diff options
context:
space:
mode:
authorJohannes Schickel2016-03-08 18:59:23 +0100
committerJohannes Schickel2016-03-08 19:01:42 +0100
commite515fc18db0cdff1d947ef8686123ef0dc669cff (patch)
tree6b98db9015f2bb7756288d31e6aded47684992fa /engines/sword1
parent3aecd8ef2a79dbbd43dd0e39e42b11409720361f (diff)
downloadscummvm-rg350-e515fc18db0cdff1d947ef8686123ef0dc669cff.tar.gz
scummvm-rg350-e515fc18db0cdff1d947ef8686123ef0dc669cff.tar.bz2
scummvm-rg350-e515fc18db0cdff1d947ef8686123ef0dc669cff.zip
ENGINES: Make variable names of PlainGameDescriptor conform to our guidelines.
gameid -> gameId
Diffstat (limited to 'engines/sword1')
-rw-r--r--engines/sword1/detection.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/engines/sword1/detection.cpp b/engines/sword1/detection.cpp
index 3eac95cdf2..0edf856125 100644
--- a/engines/sword1/detection.cpp
+++ b/engines/sword1/detection.cpp
@@ -128,17 +128,17 @@ GameList SwordMetaEngine::getSupportedGames() const {
}
GameDescriptor SwordMetaEngine::findGame(const char *gameid) const {
- if (0 == scumm_stricmp(gameid, sword1FullSettings.gameid))
+ if (0 == scumm_stricmp(gameid, sword1FullSettings.gameId))
return sword1FullSettings;
- if (0 == scumm_stricmp(gameid, sword1DemoSettings.gameid))
+ if (0 == scumm_stricmp(gameid, sword1DemoSettings.gameId))
return sword1DemoSettings;
- if (0 == scumm_stricmp(gameid, sword1MacFullSettings.gameid))
+ if (0 == scumm_stricmp(gameid, sword1MacFullSettings.gameId))
return sword1MacFullSettings;
- if (0 == scumm_stricmp(gameid, sword1MacDemoSettings.gameid))
+ if (0 == scumm_stricmp(gameid, sword1MacDemoSettings.gameId))
return sword1MacDemoSettings;
- if (0 == scumm_stricmp(gameid, sword1PSXSettings.gameid))
+ if (0 == scumm_stricmp(gameid, sword1PSXSettings.gameId))
return sword1PSXSettings;
- if (0 == scumm_stricmp(gameid, sword1PSXDemoSettings.gameid))
+ if (0 == scumm_stricmp(gameid, sword1PSXDemoSettings.gameId))
return sword1PSXDemoSettings;
return GameDescriptor();
}