aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/detection.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2007-08-13 10:12:07 +0000
committerEugene Sandulenko2007-08-13 10:12:07 +0000
commit837381f1d455fd5568759db4ad4767891c58dfce (patch)
treeacef85a66f69f09eb9a121e343e9909eade17220 /engines/kyra/detection.cpp
parent397aeeebfbc78e9b7fe86d9f0329d2ad94a640fe (diff)
downloadscummvm-rg350-837381f1d455fd5568759db4ad4767891c58dfce.tar.gz
scummvm-rg350-837381f1d455fd5568759db4ad4767891c58dfce.tar.bz2
scummvm-rg350-837381f1d455fd5568759db4ad4767891c58dfce.zip
Fix linking errors.
svn-id: r28587
Diffstat (limited to 'engines/kyra/detection.cpp')
-rw-r--r--engines/kyra/detection.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/kyra/detection.cpp b/engines/kyra/detection.cpp
index 564a73c313..a3d861067a 100644
--- a/engines/kyra/detection.cpp
+++ b/engines/kyra/detection.cpp
@@ -119,7 +119,7 @@ const Common::ADParams detectionParams = {
} // End of anonymous namespace
-bool engineCreate(OSystem *syst, Engine **engine, Common::EncapsulatedADGameDesc encapsulatedDesc) {
+bool engineCreateKyra(OSystem *syst, Engine **engine, Common::EncapsulatedADGameDesc encapsulatedDesc) {
const KYRAGameDescription *gd = (const KYRAGameDescription *)(encapsulatedDesc.realDesc);
bool res = true;
@@ -158,7 +158,7 @@ bool engineCreate(OSystem *syst, Engine **engine, Common::EncapsulatedADGameDesc
return res;
}
-ADVANCED_DETECTOR_DEFINE_PLUGIN_WITH_COMPLEX_CREATION(KYRA, engineCreate, detectionParams);
+ADVANCED_DETECTOR_DEFINE_PLUGIN_WITH_COMPLEX_CREATION(KYRA, engineCreateKyra, detectionParams);
REGISTER_PLUGIN(KYRA, "Legend of Kyrandia Engine", "The Legend of Kyrandia (C) Westwood Studios");