diff options
author | Max Horn | 2008-02-03 18:56:47 +0000 |
---|---|---|
committer | Max Horn | 2008-02-03 18:56:47 +0000 |
commit | 8a73356a2d6e2d6b7ecefb53e0d5e82484f0e697 (patch) | |
tree | 7a5fbed1f61904961fad43411f65d8e174955f2c /engines/drascula | |
parent | 15975bdf7324a8b892562768fe73b6e17816d56f (diff) | |
download | scummvm-rg350-8a73356a2d6e2d6b7ecefb53e0d5e82484f0e697.tar.gz scummvm-rg350-8a73356a2d6e2d6b7ecefb53e0d5e82484f0e697.tar.bz2 scummvm-rg350-8a73356a2d6e2d6b7ecefb53e0d5e82484f0e697.zip |
Revised Engine plugin API to only provide a single func which returns a MetaEngine instance. Used this to simplify the rest of the plugin system
svn-id: r30780
Diffstat (limited to 'engines/drascula')
-rw-r--r-- | engines/drascula/detection.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/engines/drascula/detection.cpp b/engines/drascula/detection.cpp index 484869ecaa..63fb6c92ad 100644 --- a/engines/drascula/detection.cpp +++ b/engines/drascula/detection.cpp @@ -186,6 +186,4 @@ bool DrasculaMetaEngine::createInstance(OSystem *syst, Engine **engine, const Co return gd != 0; } -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"); +REGISTER_PLUGIN(DRASCULA, DrasculaMetaEngine); |