diff options
author | Eugene Sandulenko | 2007-08-13 10:12:07 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2007-08-13 10:12:07 +0000 |
commit | 837381f1d455fd5568759db4ad4767891c58dfce (patch) | |
tree | acef85a66f69f09eb9a121e343e9909eade17220 /engines/agos | |
parent | 397aeeebfbc78e9b7fe86d9f0329d2ad94a640fe (diff) | |
download | scummvm-rg350-837381f1d455fd5568759db4ad4767891c58dfce.tar.gz scummvm-rg350-837381f1d455fd5568759db4ad4767891c58dfce.tar.bz2 scummvm-rg350-837381f1d455fd5568759db4ad4767891c58dfce.zip |
Fix linking errors.
svn-id: r28587
Diffstat (limited to 'engines/agos')
-rw-r--r-- | engines/agos/detection.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/agos/detection.cpp b/engines/agos/detection.cpp index fe4dc71fea..31ff220412 100644 --- a/engines/agos/detection.cpp +++ b/engines/agos/detection.cpp @@ -101,7 +101,7 @@ static const Common::ADParams detectionParams = { Common::kADFlagAugmentPreferredTarget }; -bool engineCreate(OSystem *syst, Engine **engine, Common::EncapsulatedADGameDesc encapsulatedDesc) { +bool engineCreateAgos(OSystem *syst, Engine **engine, Common::EncapsulatedADGameDesc encapsulatedDesc) { const AGOS::AGOSGameDescription *gd = (const AGOS::AGOSGameDescription *)(encapsulatedDesc.realDesc); bool res = true; @@ -135,7 +135,7 @@ bool engineCreate(OSystem *syst, Engine **engine, Common::EncapsulatedADGameDesc return res; } -ADVANCED_DETECTOR_DEFINE_PLUGIN_WITH_COMPLEX_CREATION(AGOS, engineCreate, detectionParams); +ADVANCED_DETECTOR_DEFINE_PLUGIN_WITH_COMPLEX_CREATION(AGOS, engineCreateAgos, detectionParams); REGISTER_PLUGIN(AGOS, "AGOS", "AGOS (C) Adventure Soft"); |