[Scummvm-cvs-logs] SF.net SVN: scummvm: [28587] scummvm/trunk/engines

sev at users.sourceforge.net sev at users.sourceforge.net
Mon Aug 13 12:12:07 CEST 2007


Revision: 28587
          http://scummvm.svn.sourceforge.net/scummvm/?rev=28587&view=rev
Author:   sev
Date:     2007-08-13 03:12:07 -0700 (Mon, 13 Aug 2007)

Log Message:
-----------
Fix linking errors.

Modified Paths:
--------------
    scummvm/trunk/engines/agos/detection.cpp
    scummvm/trunk/engines/kyra/detection.cpp
    scummvm/trunk/engines/parallaction/detection.cpp

Modified: scummvm/trunk/engines/agos/detection.cpp
===================================================================
--- scummvm/trunk/engines/agos/detection.cpp	2007-08-13 09:58:59 UTC (rev 28586)
+++ scummvm/trunk/engines/agos/detection.cpp	2007-08-13 10:12:07 UTC (rev 28587)
@@ -101,7 +101,7 @@
 	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 @@
 	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");
 

Modified: scummvm/trunk/engines/kyra/detection.cpp
===================================================================
--- scummvm/trunk/engines/kyra/detection.cpp	2007-08-13 09:58:59 UTC (rev 28586)
+++ scummvm/trunk/engines/kyra/detection.cpp	2007-08-13 10:12:07 UTC (rev 28587)
@@ -119,7 +119,7 @@
 
 } // 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 @@
 	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");
 

Modified: scummvm/trunk/engines/parallaction/detection.cpp
===================================================================
--- scummvm/trunk/engines/parallaction/detection.cpp	2007-08-13 09:58:59 UTC (rev 28586)
+++ scummvm/trunk/engines/parallaction/detection.cpp	2007-08-13 10:12:07 UTC (rev 28587)
@@ -186,7 +186,7 @@
 	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 @@
 	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");
 


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list