mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 05:38:56 +00:00
Changed "COMPATIBLITY" to "COMPATIBILITY".
svn-id: r30754
This commit is contained in:
parent
a6ad889aa2
commit
e51bf80218
@ -2284,7 +2284,7 @@ bool AgiMetaEngine::createInstance(OSystem *syst, Engine **engine, const Common:
|
||||
return res;
|
||||
}
|
||||
|
||||
META_COMPATIBLITY_WRAPPER(AGI, AgiMetaEngine);
|
||||
META_COMPATIBILITY_WRAPPER(AGI, AgiMetaEngine);
|
||||
|
||||
REGISTER_PLUGIN(AGI, "AGI preAGI + v2 + v3 Engine", "Sierra AGI Engine (C) Sierra On-Line Software");
|
||||
|
||||
|
@ -151,7 +151,7 @@ bool AgosMetaEngine::createInstance(OSystem *syst, Engine **engine, const Common
|
||||
return res;
|
||||
}
|
||||
|
||||
META_COMPATIBLITY_WRAPPER(AGOS, AgosMetaEngine);
|
||||
META_COMPATIBILITY_WRAPPER(AGOS, AgosMetaEngine);
|
||||
|
||||
REGISTER_PLUGIN(AGOS, "AGOS", "AGOS (C) Adventure Soft");
|
||||
|
||||
|
@ -511,6 +511,6 @@ bool CineMetaEngine::createInstance(OSystem *syst, Engine **engine, const Common
|
||||
return gd != 0;
|
||||
}
|
||||
|
||||
META_COMPATIBLITY_WRAPPER(CINE, CineMetaEngine);
|
||||
META_COMPATIBILITY_WRAPPER(CINE, CineMetaEngine);
|
||||
|
||||
REGISTER_PLUGIN(CINE, "Cinematique evo 1 engine", "Future Wars & Operation Stealth (C) Delphine Software");
|
||||
|
@ -146,6 +146,6 @@ bool CruiseMetaEngine::createInstance(OSystem *syst, Engine **engine, const Comm
|
||||
return gd != 0;
|
||||
}
|
||||
|
||||
META_COMPATIBLITY_WRAPPER(CRUISE, CruiseMetaEngine);
|
||||
META_COMPATIBILITY_WRAPPER(CRUISE, CruiseMetaEngine);
|
||||
|
||||
REGISTER_PLUGIN(CRUISE, "Cinematique evo 2 engine", "Cruise for a Corpse (C) Delphine Software");
|
||||
|
@ -186,6 +186,6 @@ bool DrasculaMetaEngine::createInstance(OSystem *syst, Engine **engine, const Co
|
||||
return gd != 0;
|
||||
}
|
||||
|
||||
META_COMPATIBLITY_WRAPPER(DRASCULA, DrasculaMetaEngine);
|
||||
META_COMPATIBILITY_WRAPPER(DRASCULA, DrasculaMetaEngine);
|
||||
|
||||
REGISTER_PLUGIN(DRASCULA, "Drascula Engine", "Drascula Engine (C) 2000 Alcachofa Soft, 1996 (C) Digital Dreams Multimedia, 1994 (C) Emilio de Paz");
|
||||
|
@ -1779,7 +1779,7 @@ bool GobMetaEngine::createInstance(OSystem *syst, Engine **engine, const Common:
|
||||
return gd != 0;
|
||||
}
|
||||
|
||||
META_COMPATIBLITY_WRAPPER(GOB, GobMetaEngine);
|
||||
META_COMPATIBILITY_WRAPPER(GOB, GobMetaEngine);
|
||||
|
||||
REGISTER_PLUGIN(GOB, "Gob Engine", "Goblins Games (C) Coktel Vision");
|
||||
|
||||
|
@ -134,6 +134,6 @@ bool IgorMetaEngine::createInstance(OSystem *syst, Engine **engine, const Common
|
||||
return gd != 0;
|
||||
}
|
||||
|
||||
META_COMPATIBLITY_WRAPPER(IGOR, IgorMetaEngine);
|
||||
META_COMPATIBILITY_WRAPPER(IGOR, IgorMetaEngine);
|
||||
|
||||
REGISTER_PLUGIN(IGOR, "Igor: Objective Uikokahonia", "Igor: Objective Uikokahonia (C) Pendulo Studios");
|
||||
|
@ -484,6 +484,6 @@ bool KyraMetaEngine::createInstance(OSystem *syst, Engine **engine, const Common
|
||||
return res;
|
||||
}
|
||||
|
||||
META_COMPATIBLITY_WRAPPER(KYRA, KyraMetaEngine);
|
||||
META_COMPATIBILITY_WRAPPER(KYRA, KyraMetaEngine);
|
||||
|
||||
REGISTER_PLUGIN(KYRA, "Legend of Kyrandia Engine", "The Legend of Kyrandia (C) Westwood Studios");
|
||||
|
@ -197,6 +197,6 @@ bool LureMetaEngine::createInstance(OSystem *syst, Engine **engine, const Common
|
||||
return gd != 0;
|
||||
}
|
||||
|
||||
META_COMPATIBLITY_WRAPPER(LURE, LureMetaEngine);
|
||||
META_COMPATIBILITY_WRAPPER(LURE, LureMetaEngine);
|
||||
|
||||
REGISTER_PLUGIN(LURE, "Lure of the Temptress Engine", "Lure of the Temptress (C) Revolution");
|
||||
|
@ -59,12 +59,12 @@ public:
|
||||
|
||||
|
||||
/**
|
||||
* The META_COMPATIBLITY_WRAPPER macro is there to ease the transition from the
|
||||
* The META_COMPATIBILITY_WRAPPER macro is there to ease the transition from the
|
||||
* old plugin API to the new MetaEngine class. Ultimately, this macro will go
|
||||
* and REGISTER_PLUGIN will be changed to simply take an ID and a METACLASS.
|
||||
* Until then, use META_COMPATIBLITY_WRAPPER + REGISTER_PLUGIN.
|
||||
* Until then, use META_COMPATIBILITY_WRAPPER + REGISTER_PLUGIN.
|
||||
*/
|
||||
#define META_COMPATIBLITY_WRAPPER(ID,METACLASS) \
|
||||
#define META_COMPATIBILITY_WRAPPER(ID,METACLASS) \
|
||||
static MetaEngine &getMetaEngine() { \
|
||||
static MetaEngine *meta = 0; \
|
||||
if (!meta) meta = new METACLASS(); \
|
||||
|
@ -218,6 +218,6 @@ bool ParallactionMetaEngine::createInstance(OSystem *syst, Engine **engine, cons
|
||||
return res;
|
||||
}
|
||||
|
||||
META_COMPATIBLITY_WRAPPER(PARALLACTION, ParallactionMetaEngine);
|
||||
META_COMPATIBILITY_WRAPPER(PARALLACTION, ParallactionMetaEngine);
|
||||
|
||||
REGISTER_PLUGIN(PARALLACTION, "Parallaction engine", "Nippon Safes Inc. (C) Dynabyte");
|
||||
|
@ -128,7 +128,7 @@ PluginError QueenMetaEngine::createInstance(OSystem *syst, Engine **engine) cons
|
||||
return kNoError;
|
||||
}
|
||||
|
||||
META_COMPATIBLITY_WRAPPER(QUEEN, QueenMetaEngine);
|
||||
META_COMPATIBILITY_WRAPPER(QUEEN, QueenMetaEngine);
|
||||
|
||||
REGISTER_PLUGIN(QUEEN, "Flight of the Amazon Queen", "Flight of the Amazon Queen (C) John Passfield and Steve Stamatiadis");
|
||||
|
||||
|
@ -164,7 +164,7 @@ bool SagaMetaEngine::createInstance(OSystem *syst, Engine **engine, const Common
|
||||
return gd != 0;
|
||||
}
|
||||
|
||||
META_COMPATIBLITY_WRAPPER(SAGA, SagaMetaEngine);
|
||||
META_COMPATIBILITY_WRAPPER(SAGA, SagaMetaEngine);
|
||||
|
||||
REGISTER_PLUGIN(SAGA, "SAGA Engine", "Inherit the Earth (C) Wyrmkeep Entertainment");
|
||||
|
||||
|
@ -929,7 +929,7 @@ const char *ScummMetaEngine::getCopyright() const {
|
||||
"Humongous SCUMM Games (C) Humongous";
|
||||
}
|
||||
|
||||
META_COMPATIBLITY_WRAPPER(SCUMM, ScummMetaEngine);
|
||||
META_COMPATIBILITY_WRAPPER(SCUMM, ScummMetaEngine);
|
||||
|
||||
REGISTER_PLUGIN(SCUMM, "Scumm Engine",
|
||||
"LucasArts SCUMM Games (C) LucasArts\n"
|
||||
|
@ -195,7 +195,7 @@ PluginError SkyMetaEngine::createInstance(OSystem *syst, Engine **engine) const
|
||||
return kNoError;
|
||||
}
|
||||
|
||||
META_COMPATIBLITY_WRAPPER(SKY, SkyMetaEngine);
|
||||
META_COMPATIBILITY_WRAPPER(SKY, SkyMetaEngine);
|
||||
|
||||
REGISTER_PLUGIN(SKY, "Beneath a Steel Sky", "Beneath a Steel Sky (C) Revolution");
|
||||
|
||||
|
@ -187,7 +187,7 @@ PluginError SwordMetaEngine::createInstance(OSystem *syst, Engine **engine) cons
|
||||
return kNoError;
|
||||
}
|
||||
|
||||
META_COMPATIBLITY_WRAPPER(SWORD1, SwordMetaEngine);
|
||||
META_COMPATIBILITY_WRAPPER(SWORD1, SwordMetaEngine);
|
||||
|
||||
REGISTER_PLUGIN(SWORD1, "Broken Sword", "Broken Sword Games (C) Revolution");
|
||||
|
||||
|
@ -180,7 +180,7 @@ PluginError Sword2MetaEngine::createInstance(OSystem *syst, Engine **engine) con
|
||||
return kNoGameDataFoundError;
|
||||
}
|
||||
|
||||
META_COMPATIBLITY_WRAPPER(SWORD2, Sword2MetaEngine);
|
||||
META_COMPATIBILITY_WRAPPER(SWORD2, Sword2MetaEngine);
|
||||
|
||||
REGISTER_PLUGIN(SWORD2, "Broken Sword 2", "Broken Sword Games (C) Revolution");
|
||||
|
||||
|
@ -147,6 +147,6 @@ bool ToucheMetaEngine::createInstance(OSystem *syst, Engine **engine, const Comm
|
||||
return gd != 0;
|
||||
}
|
||||
|
||||
META_COMPATIBLITY_WRAPPER(TOUCHE, ToucheMetaEngine);
|
||||
META_COMPATIBILITY_WRAPPER(TOUCHE, ToucheMetaEngine);
|
||||
|
||||
REGISTER_PLUGIN(TOUCHE, "Touche Engine", "Touche: The Adventures of the 5th Musketeer (C) Clipper Software");
|
||||
|
Loading…
Reference in New Issue
Block a user