From babf7ef44c2407cd52000684e3fa08aa63c8b462 Mon Sep 17 00:00:00 2001 From: Neeraj Kumar Date: Mon, 24 May 2010 14:54:50 +0000 Subject: added the testbed engine: basically renamed quux svn-id: r49188 --- base/plugins.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'base/plugins.cpp') diff --git a/base/plugins.cpp b/base/plugins.cpp index 6c80da65d4..feead28247 100644 --- a/base/plugins.cpp +++ b/base/plugins.cpp @@ -163,6 +163,9 @@ public: #if PLUGIN_ENABLED_STATIC(TUCKER) LINK_PLUGIN(TUCKER) #endif + #if PLUGIN_ENABLED_STATIC(TESTBED) + LINK_PLUGIN(TESTBED) + #endif // Music plugins // TODO: Use defines to disable or enable each MIDI driver as a -- cgit v1.2.3 From d477d66f49fb37609b6a989425603d470cb09245 Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Fri, 17 Sep 2010 20:02:29 +0000 Subject: SOUND: Properly add CMS as plugin. svn-id: r52779 --- base/plugins.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'base/plugins.cpp') diff --git a/base/plugins.cpp b/base/plugins.cpp index f5e51f3228..ab660488d3 100644 --- a/base/plugins.cpp +++ b/base/plugins.cpp @@ -206,6 +206,7 @@ public: LINK_PLUGIN(ADLIB) LINK_PLUGIN(PCSPK) LINK_PLUGIN(PCJR) + LINK_PLUGIN(CMS) #ifndef DISABLE_SID LINK_PLUGIN(C64) #endif -- cgit v1.2.3 From cf82bef02ee2941ddad6664e34f3c94e35e015a3 Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Fri, 8 Oct 2010 22:30:39 +0000 Subject: TOON: Merged Toon engine to ScummVM trunk svn-id: r53087 --- base/plugins.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'base/plugins.cpp') diff --git a/base/plugins.cpp b/base/plugins.cpp index ab660488d3..42fdf9bc12 100644 --- a/base/plugins.cpp +++ b/base/plugins.cpp @@ -163,6 +163,9 @@ public: #if PLUGIN_ENABLED_STATIC(TINSEL) LINK_PLUGIN(TINSEL) #endif + #if PLUGIN_ENABLED_STATIC(TOON) + LINK_PLUGIN(TOON) + #endif #if PLUGIN_ENABLED_STATIC(TOUCHE) LINK_PLUGIN(TOUCHE) #endif -- cgit v1.2.3 From dbde2e46e3c44a795b8597ea3c2b6c7503dfbbef Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Tue, 12 Oct 2010 21:12:50 +0000 Subject: SWORD25: Added detection of libtheora, png an dplugged in the engine svn-id: r53169 --- base/plugins.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'base/plugins.cpp') diff --git a/base/plugins.cpp b/base/plugins.cpp index 42fdf9bc12..382f9d3c32 100644 --- a/base/plugins.cpp +++ b/base/plugins.cpp @@ -154,6 +154,9 @@ public: #if PLUGIN_ENABLED_STATIC(SWORD2) LINK_PLUGIN(SWORD2) #endif + #if PLUGIN_ENABLED_STATIC(SWORD25) + LINK_PLUGIN(SWORD25) + #endif #if PLUGIN_ENABLED_STATIC(TEENAGENT) LINK_PLUGIN(TEENAGENT) #endif -- cgit v1.2.3 From 3b81a9489eabad1faa6c67bb0d5685d7a3eb0386 Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Wed, 13 Oct 2010 00:48:40 +0000 Subject: SOUND: Allow TiMidity support to be disabled via configure. svn-id: r53395 --- base/plugins.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'base/plugins.cpp') diff --git a/base/plugins.cpp b/base/plugins.cpp index 382f9d3c32..e2af9328a7 100644 --- a/base/plugins.cpp +++ b/base/plugins.cpp @@ -219,7 +219,7 @@ public: LINK_PLUGIN(AMIGA) LINK_PLUGIN(APPLEIIGS) LINK_PLUGIN(TOWNS) - #if defined (UNIX) + #if defined(USE_TIMIDITY) LINK_PLUGIN(TIMIDITY) #endif -- cgit v1.2.3 From 937cf6cd7aa3fdafc661bcfcf28e4f3dd05306ba Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Mon, 18 Oct 2010 19:18:06 +0000 Subject: CONFIGURE: Plug in Last Express engine svn-id: r53580 --- base/plugins.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'base/plugins.cpp') diff --git a/base/plugins.cpp b/base/plugins.cpp index e2af9328a7..7102462173 100644 --- a/base/plugins.cpp +++ b/base/plugins.cpp @@ -121,6 +121,9 @@ public: #if PLUGIN_ENABLED_STATIC(KYRA) LINK_PLUGIN(KYRA) #endif + #if PLUGIN_ENABLED_STATIC(LASTEXPRESS) + LINK_PLUGIN(LASTEXPRESS) + #endif #if PLUGIN_ENABLED_STATIC(LURE) LINK_PLUGIN(LURE) #endif -- cgit v1.2.3