diff options
author | Max Horn | 2007-04-27 20:23:25 +0000 |
---|---|---|
committer | Max Horn | 2007-04-27 20:23:25 +0000 |
commit | 579a3fe7cff57a6a070d009873224954f22581c9 (patch) | |
tree | 551f4abeccc466d5a89cf382e744864b98900ffc | |
parent | 89ee8945c1bab03625dd5749b5d540edd08cf20c (diff) | |
download | scummvm-rg350-579a3fe7cff57a6a070d009873224954f22581c9.tar.gz scummvm-rg350-579a3fe7cff57a6a070d009873224954f22581c9.tar.bz2 scummvm-rg350-579a3fe7cff57a6a070d009873224954f22581c9.zip |
Renamed plugin.cpp to detection.cpp in all engines
svn-id: r26622
-rw-r--r-- | engines/kyra/detection.cpp (renamed from engines/kyra/plugin.cpp) | 0 | ||||
-rw-r--r-- | engines/kyra/module.mk | 2 | ||||
-rw-r--r-- | engines/scumm/detection.cpp (renamed from engines/scumm/plugin.cpp) | 2 | ||||
-rw-r--r-- | engines/scumm/detection.h (renamed from engines/scumm/plugin.h) | 4 | ||||
-rw-r--r-- | engines/scumm/dialogs.h | 2 | ||||
-rw-r--r-- | engines/scumm/file.h | 2 | ||||
-rw-r--r-- | engines/scumm/module.mk | 2 | ||||
-rw-r--r-- | engines/scumm/scumm.h | 2 | ||||
-rw-r--r-- | engines/touche/detection.cpp (renamed from engines/touche/plugin.cpp) | 0 | ||||
-rw-r--r-- | engines/touche/module.mk | 2 |
10 files changed, 9 insertions, 9 deletions
diff --git a/engines/kyra/plugin.cpp b/engines/kyra/detection.cpp index 48515dd6ae..48515dd6ae 100644 --- a/engines/kyra/plugin.cpp +++ b/engines/kyra/detection.cpp diff --git a/engines/kyra/module.mk b/engines/kyra/module.mk index f570dfa5a4..f0be5f6934 100644 --- a/engines/kyra/module.mk +++ b/engines/kyra/module.mk @@ -3,12 +3,12 @@ MODULE := engines/kyra MODULE_OBJS := \ animator.o \ debugger.o \ + detection.o \ gui.o \ items.o \ kyra.o \ kyra_v2.o \ kyra_v3.o \ - plugin.o \ resource.o \ saveload.o \ scene.o \ diff --git a/engines/scumm/plugin.cpp b/engines/scumm/detection.cpp index ae5ecc1b59..fb4ea740c1 100644 --- a/engines/scumm/plugin.cpp +++ b/engines/scumm/detection.cpp @@ -30,7 +30,7 @@ #include "common/list.h" #include "common/md5.h" -#include "scumm/plugin.h" +#include "scumm/detection.h" #include "scumm/scumm.h" #include "scumm/intern.h" #include "scumm/he/intern_he.h" diff --git a/engines/scumm/plugin.h b/engines/scumm/detection.h index 3b0ddabd54..b75fd7c46e 100644 --- a/engines/scumm/plugin.h +++ b/engines/scumm/detection.h @@ -21,8 +21,8 @@ * */ -#ifndef SCUMM_PLUGIN_H -#define SCUMM_PLUGIN_H +#ifndef SCUMM_DETECTION_H +#define SCUMM_DETECTION_H #include "common/util.h" diff --git a/engines/scumm/dialogs.h b/engines/scumm/dialogs.h index 772414d649..bfcdaf2960 100644 --- a/engines/scumm/dialogs.h +++ b/engines/scumm/dialogs.h @@ -27,7 +27,7 @@ #include "gui/options.h" #include "gui/widget.h" -#include "scumm/plugin.h" +#include "scumm/detection.h" #ifndef DISABLE_HELP #include "scumm/help.h" #endif diff --git a/engines/scumm/file.h b/engines/scumm/file.h index cc0ba926e9..0c78a5c5c2 100644 --- a/engines/scumm/file.h +++ b/engines/scumm/file.h @@ -25,7 +25,7 @@ #include "common/file.h" -#include "scumm/plugin.h" +#include "scumm/detection.h" namespace Scumm { diff --git a/engines/scumm/module.mk b/engines/scumm/module.mk index cb5d041aa7..d7b858a312 100644 --- a/engines/scumm/module.mk +++ b/engines/scumm/module.mk @@ -11,6 +11,7 @@ MODULE_OBJS := \ costume.o \ cursor.o \ debugger.o \ + detection.o \ dialogs.o \ file.o \ gfx.o \ @@ -34,7 +35,6 @@ MODULE_OBJS := \ player_v2.o \ player_v2a.o \ player_v3a.o \ - plugin.o \ resource_v2.o \ resource_v3.o \ resource_v4.o \ diff --git a/engines/scumm/scumm.h b/engines/scumm/scumm.h index 76b36fe935..33df01be1d 100644 --- a/engines/scumm/scumm.h +++ b/engines/scumm/scumm.h @@ -32,7 +32,7 @@ #include "graphics/surface.h" #include "scumm/gfx.h" -#include "scumm/plugin.h" +#include "scumm/detection.h" #include "scumm/script.h" #include "sound/mididrv.h" diff --git a/engines/touche/plugin.cpp b/engines/touche/detection.cpp index cff91ecd83..cff91ecd83 100644 --- a/engines/touche/plugin.cpp +++ b/engines/touche/detection.cpp diff --git a/engines/touche/module.mk b/engines/touche/module.mk index 1c68d1b7c3..c1bc0b5719 100644 --- a/engines/touche/module.mk +++ b/engines/touche/module.mk @@ -1,9 +1,9 @@ MODULE := engines/touche MODULE_OBJS := \ + detection.o \ graphics.o \ midi.o \ - plugin.o \ opcodes.o \ resource.o \ saveload.o \ |