[Scummvm-cvs-logs] scummvm master -> 3333084eaf43c47d30dbb0b08d87e6b57c501d11

lordhoto lordhoto at gmail.com
Mon Feb 17 23:05:25 CET 2014


This automated email contains information about 9 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
299c74bd46 CGE: Indent REGISTER_PLUGIN_* for consistency.
0138330464 COMPOSER: Indent REGISTER_PLUGIN_* for consistency.
5c29233921 CRUISE: Indent REGISTER_PLUGIN_* for consistency.
a1628bfa3f HOPKINS: Indent REGISTER_PLUGIN_* for consistency.
5094cb90a2 HUGO: Indent REGISTER_PLUGIN_* for consistency.
859536dd3a TEENAGENT: Indent REGISTER_PLUGIN_* for consistency.
88469ba578 TONY: Indent REGISTER_PLUGIN_* for consistency.
b1dd05281f TSAGE: Indent REGISTER_PLUGIN_* for consistency.
3333084eaf WINTERMUTE: Indent REGISTER_PLUGIN_* for consistency.


Commit: 299c74bd46500d1cace3c3a6d18d63d29a88ff3f
    https://github.com/scummvm/scummvm/commit/299c74bd46500d1cace3c3a6d18d63d29a88ff3f
Author: Johannes Schickel (lordhoto at scummvm.org)
Date: 2014-02-17T14:01:13-08:00

Commit Message:
CGE: Indent REGISTER_PLUGIN_* for consistency.

Changed paths:
    engines/cge/detection.cpp



diff --git a/engines/cge/detection.cpp b/engines/cge/detection.cpp
index 11f2a43..7cd6d6e 100644
--- a/engines/cge/detection.cpp
+++ b/engines/cge/detection.cpp
@@ -308,7 +308,7 @@ bool CGEMetaEngine::createInstance(OSystem *syst, Engine **engine, const ADGameD
 }
 
 #if PLUGIN_ENABLED_DYNAMIC(CGE)
-REGISTER_PLUGIN_DYNAMIC(CGE, PLUGIN_TYPE_ENGINE, CGEMetaEngine);
+	REGISTER_PLUGIN_DYNAMIC(CGE, PLUGIN_TYPE_ENGINE, CGEMetaEngine);
 #else
-REGISTER_PLUGIN_STATIC(CGE, PLUGIN_TYPE_ENGINE, CGEMetaEngine);
+	REGISTER_PLUGIN_STATIC(CGE, PLUGIN_TYPE_ENGINE, CGEMetaEngine);
 #endif


Commit: 0138330464b3f4e8aa028e32f21bfac0874290dc
    https://github.com/scummvm/scummvm/commit/0138330464b3f4e8aa028e32f21bfac0874290dc
Author: Johannes Schickel (lordhoto at scummvm.org)
Date: 2014-02-17T14:01:36-08:00

Commit Message:
COMPOSER: Indent REGISTER_PLUGIN_* for consistency.

Changed paths:
    engines/composer/detection.cpp



diff --git a/engines/composer/detection.cpp b/engines/composer/detection.cpp
index 8411441..2190679 100644
--- a/engines/composer/detection.cpp
+++ b/engines/composer/detection.cpp
@@ -420,7 +420,7 @@ bool Composer::ComposerEngine::hasFeature(EngineFeature f) const {
 }
 
 #if PLUGIN_ENABLED_DYNAMIC(COMPOSER)
-REGISTER_PLUGIN_DYNAMIC(COMPOSER, PLUGIN_TYPE_ENGINE, ComposerMetaEngine);
+	REGISTER_PLUGIN_DYNAMIC(COMPOSER, PLUGIN_TYPE_ENGINE, ComposerMetaEngine);
 #else
-REGISTER_PLUGIN_STATIC(COMPOSER, PLUGIN_TYPE_ENGINE, ComposerMetaEngine);
+	REGISTER_PLUGIN_STATIC(COMPOSER, PLUGIN_TYPE_ENGINE, ComposerMetaEngine);
 #endif


Commit: 5c292339212c3f5c8228317d3a55ff5d067cf372
    https://github.com/scummvm/scummvm/commit/5c292339212c3f5c8228317d3a55ff5d067cf372
Author: Johannes Schickel (lordhoto at scummvm.org)
Date: 2014-02-17T14:01:53-08:00

Commit Message:
CRUISE: Indent REGISTER_PLUGIN_* for consistency.

Changed paths:
    engines/cruise/detection.cpp



diff --git a/engines/cruise/detection.cpp b/engines/cruise/detection.cpp
index bce3f18..a86c6e7 100644
--- a/engines/cruise/detection.cpp
+++ b/engines/cruise/detection.cpp
@@ -286,7 +286,7 @@ bool CruiseMetaEngine::createInstance(OSystem *syst, Engine **engine, const ADGa
 
 
 #if PLUGIN_ENABLED_DYNAMIC(CRUISE)
-REGISTER_PLUGIN_DYNAMIC(CRUISE, PLUGIN_TYPE_ENGINE, CruiseMetaEngine);
+	REGISTER_PLUGIN_DYNAMIC(CRUISE, PLUGIN_TYPE_ENGINE, CruiseMetaEngine);
 #else
-REGISTER_PLUGIN_STATIC(CRUISE, PLUGIN_TYPE_ENGINE, CruiseMetaEngine);
+	REGISTER_PLUGIN_STATIC(CRUISE, PLUGIN_TYPE_ENGINE, CruiseMetaEngine);
 #endif


Commit: a1628bfa3fda49078fe818d292c784021c96f572
    https://github.com/scummvm/scummvm/commit/a1628bfa3fda49078fe818d292c784021c96f572
Author: Johannes Schickel (lordhoto at scummvm.org)
Date: 2014-02-17T14:02:07-08:00

Commit Message:
HOPKINS: Indent REGISTER_PLUGIN_* for consistency.

Changed paths:
    engines/hopkins/detection.cpp



diff --git a/engines/hopkins/detection.cpp b/engines/hopkins/detection.cpp
index b81f51e..072c591 100644
--- a/engines/hopkins/detection.cpp
+++ b/engines/hopkins/detection.cpp
@@ -215,7 +215,7 @@ SaveStateDescriptor HopkinsMetaEngine::querySaveMetaInfos(const char *target, in
 
 
 #if PLUGIN_ENABLED_DYNAMIC(HOPKINS)
-REGISTER_PLUGIN_DYNAMIC(HOPKINS, PLUGIN_TYPE_ENGINE, HopkinsMetaEngine);
+	REGISTER_PLUGIN_DYNAMIC(HOPKINS, PLUGIN_TYPE_ENGINE, HopkinsMetaEngine);
 #else
-REGISTER_PLUGIN_STATIC(HOPKINS, PLUGIN_TYPE_ENGINE, HopkinsMetaEngine);
+	REGISTER_PLUGIN_STATIC(HOPKINS, PLUGIN_TYPE_ENGINE, HopkinsMetaEngine);
 #endif


Commit: 5094cb90a2d411747076e6df1130ee5d0d5de2cb
    https://github.com/scummvm/scummvm/commit/5094cb90a2d411747076e6df1130ee5d0d5de2cb
Author: Johannes Schickel (lordhoto at scummvm.org)
Date: 2014-02-17T14:02:24-08:00

Commit Message:
HUGO: Indent REGISTER_PLUGIN_* for consistency.

Changed paths:
    engines/hugo/detection.cpp



diff --git a/engines/hugo/detection.cpp b/engines/hugo/detection.cpp
index ee41fe33..23e963c 100644
--- a/engines/hugo/detection.cpp
+++ b/engines/hugo/detection.cpp
@@ -275,9 +275,9 @@ void HugoMetaEngine::removeSaveState(const char *target, int slot) const {
 } // End of namespace Hugo
 
 #if PLUGIN_ENABLED_DYNAMIC(HUGO)
-REGISTER_PLUGIN_DYNAMIC(HUGO, PLUGIN_TYPE_ENGINE, Hugo::HugoMetaEngine);
+	REGISTER_PLUGIN_DYNAMIC(HUGO, PLUGIN_TYPE_ENGINE, Hugo::HugoMetaEngine);
 #else
-REGISTER_PLUGIN_STATIC(HUGO, PLUGIN_TYPE_ENGINE, Hugo::HugoMetaEngine);
+	REGISTER_PLUGIN_STATIC(HUGO, PLUGIN_TYPE_ENGINE, Hugo::HugoMetaEngine);
 #endif
 
 namespace Hugo {


Commit: 859536dd3a78c81150247cf4b90ed4294c9f100c
    https://github.com/scummvm/scummvm/commit/859536dd3a78c81150247cf4b90ed4294c9f100c
Author: Johannes Schickel (lordhoto at scummvm.org)
Date: 2014-02-17T14:02:38-08:00

Commit Message:
TEENAGENT: Indent REGISTER_PLUGIN_* for consistency.

Changed paths:
    engines/teenagent/detection.cpp



diff --git a/engines/teenagent/detection.cpp b/engines/teenagent/detection.cpp
index f9f5d2f..2d1ff4c 100644
--- a/engines/teenagent/detection.cpp
+++ b/engines/teenagent/detection.cpp
@@ -184,7 +184,7 @@ public:
 };
 
 #if PLUGIN_ENABLED_DYNAMIC(TEENAGENT)
-REGISTER_PLUGIN_DYNAMIC(TEENAGENT, PLUGIN_TYPE_ENGINE, TeenAgentMetaEngine);
+	REGISTER_PLUGIN_DYNAMIC(TEENAGENT, PLUGIN_TYPE_ENGINE, TeenAgentMetaEngine);
 #else
-REGISTER_PLUGIN_STATIC(TEENAGENT, PLUGIN_TYPE_ENGINE, TeenAgentMetaEngine);
+	REGISTER_PLUGIN_STATIC(TEENAGENT, PLUGIN_TYPE_ENGINE, TeenAgentMetaEngine);
 #endif


Commit: 88469ba578755b36f2d488816aa808a75b01e8b3
    https://github.com/scummvm/scummvm/commit/88469ba578755b36f2d488816aa808a75b01e8b3
Author: Johannes Schickel (lordhoto at scummvm.org)
Date: 2014-02-17T14:02:58-08:00

Commit Message:
TONY: Indent REGISTER_PLUGIN_* for consistency.

Changed paths:
    engines/tony/detection.cpp



diff --git a/engines/tony/detection.cpp b/engines/tony/detection.cpp
index d355450..0ae397a 100644
--- a/engines/tony/detection.cpp
+++ b/engines/tony/detection.cpp
@@ -178,7 +178,7 @@ SaveStateDescriptor TonyMetaEngine::querySaveMetaInfos(const char *target, int s
 }
 
 #if PLUGIN_ENABLED_DYNAMIC(TONY)
-REGISTER_PLUGIN_DYNAMIC(TONY, PLUGIN_TYPE_ENGINE, TonyMetaEngine);
+	REGISTER_PLUGIN_DYNAMIC(TONY, PLUGIN_TYPE_ENGINE, TonyMetaEngine);
 #else
-REGISTER_PLUGIN_STATIC(TONY, PLUGIN_TYPE_ENGINE, TonyMetaEngine);
+	REGISTER_PLUGIN_STATIC(TONY, PLUGIN_TYPE_ENGINE, TonyMetaEngine);
 #endif


Commit: b1dd05281f203119bbcaad12c8da929a35fa3848
    https://github.com/scummvm/scummvm/commit/b1dd05281f203119bbcaad12c8da929a35fa3848
Author: Johannes Schickel (lordhoto at scummvm.org)
Date: 2014-02-17T14:03:12-08:00

Commit Message:
TSAGE: Indent REGISTER_PLUGIN_* for consistency.

Changed paths:
    engines/tsage/detection.cpp



diff --git a/engines/tsage/detection.cpp b/engines/tsage/detection.cpp
index 5eae755..9f830a1 100644
--- a/engines/tsage/detection.cpp
+++ b/engines/tsage/detection.cpp
@@ -176,7 +176,7 @@ public:
 };
 
 #if PLUGIN_ENABLED_DYNAMIC(TSAGE)
-REGISTER_PLUGIN_DYNAMIC(TSAGE, PLUGIN_TYPE_ENGINE, TSageMetaEngine);
+	REGISTER_PLUGIN_DYNAMIC(TSAGE, PLUGIN_TYPE_ENGINE, TSageMetaEngine);
 #else
-REGISTER_PLUGIN_STATIC(TSAGE, PLUGIN_TYPE_ENGINE, TSageMetaEngine);
+	REGISTER_PLUGIN_STATIC(TSAGE, PLUGIN_TYPE_ENGINE, TSageMetaEngine);
 #endif


Commit: 3333084eaf43c47d30dbb0b08d87e6b57c501d11
    https://github.com/scummvm/scummvm/commit/3333084eaf43c47d30dbb0b08d87e6b57c501d11
Author: Johannes Schickel (lordhoto at scummvm.org)
Date: 2014-02-17T14:03:28-08:00

Commit Message:
WINTERMUTE: Indent REGISTER_PLUGIN_* for consistency.

Changed paths:
    engines/wintermute/detection.cpp



diff --git a/engines/wintermute/detection.cpp b/engines/wintermute/detection.cpp
index f4bd437..565080c 100644
--- a/engines/wintermute/detection.cpp
+++ b/engines/wintermute/detection.cpp
@@ -185,7 +185,7 @@ public:
 } // End of namespace Wintermute
 
 #if PLUGIN_ENABLED_DYNAMIC(WINTERMUTE)
-REGISTER_PLUGIN_DYNAMIC(WINTERMUTE, PLUGIN_TYPE_ENGINE, Wintermute::WintermuteMetaEngine);
+	REGISTER_PLUGIN_DYNAMIC(WINTERMUTE, PLUGIN_TYPE_ENGINE, Wintermute::WintermuteMetaEngine);
 #else
-REGISTER_PLUGIN_STATIC(WINTERMUTE, PLUGIN_TYPE_ENGINE, Wintermute::WintermuteMetaEngine);
+	REGISTER_PLUGIN_STATIC(WINTERMUTE, PLUGIN_TYPE_ENGINE, Wintermute::WintermuteMetaEngine);
 #endif






More information about the Scummvm-git-logs mailing list