aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction
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/parallaction
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/parallaction')
-rw-r--r--engines/parallaction/detection.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/parallaction/detection.cpp b/engines/parallaction/detection.cpp
index ebfc37e795..8ad79f34eb 100644
--- a/engines/parallaction/detection.cpp
+++ b/engines/parallaction/detection.cpp
@@ -186,7 +186,7 @@ static const Common::ADParams detectionParams = {
Common::kADFlagAugmentPreferredTarget
};
-bool engineCreate(OSystem *syst, Engine **engine, Common::EncapsulatedADGameDesc encapsulatedDesc) {
+bool engineCreateParallaction(OSystem *syst, Engine **engine, Common::EncapsulatedADGameDesc encapsulatedDesc) {
const Parallaction::PARALLACTIONGameDescription *gd = (const Parallaction::PARALLACTIONGameDescription *)(encapsulatedDesc.realDesc);
bool res = true;
@@ -205,7 +205,7 @@ bool engineCreate(OSystem *syst, Engine **engine, Common::EncapsulatedADGameDesc
return res;
}
-ADVANCED_DETECTOR_DEFINE_PLUGIN_WITH_COMPLEX_CREATION(PARALLACTION, engineCreate, detectionParams);
+ADVANCED_DETECTOR_DEFINE_PLUGIN_WITH_COMPLEX_CREATION(PARALLACTION, engineCreateParallaction, detectionParams);
REGISTER_PLUGIN(PARALLACTION, "Parallaction engine", "Nippon Safes Inc. (C) Dynabyte");