aboutsummaryrefslogtreecommitdiff
path: root/base
diff options
context:
space:
mode:
authorJonathan Gray2003-10-09 14:05:09 +0000
committerJonathan Gray2003-10-09 14:05:09 +0000
commit0de202bfb4a53eee022ceae7d9cbb085ddd83d5f (patch)
tree7bcf3ff8a36ddd3e523c2a0a784010069931d78d /base
parent92997ec15ff1653b225c1ae0c73a5cb9dc94aab9 (diff)
downloadscummvm-rg350-0de202bfb4a53eee022ceae7d9cbb085ddd83d5f.tar.gz
scummvm-rg350-0de202bfb4a53eee022ceae7d9cbb085ddd83d5f.tar.bz2
scummvm-rg350-0de202bfb4a53eee022ceae7d9cbb085ddd83d5f.zip
make gcc 2.95 -Wshadow happy (yes fingolfin its a broken compiler :)
svn-id: r10701
Diffstat (limited to 'base')
-rw-r--r--base/gameDetector.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/base/gameDetector.cpp b/base/gameDetector.cpp
index e5884a55a3..476b14870b 100644
--- a/base/gameDetector.cpp
+++ b/base/gameDetector.cpp
@@ -668,9 +668,9 @@ OSystem *GameDetector::createSystem() {
#endif
}
-Engine *GameDetector::createEngine(OSystem *system) {
+Engine *GameDetector::createEngine(OSystem *sys) {
assert(_plugin);
- return _plugin->createInstance(this, system);
+ return _plugin->createInstance(this, sys);
}
int GameDetector::getMidiDriverType() {