diff options
author | Max Horn | 2003-09-17 22:41:01 +0000 |
---|---|---|
committer | Max Horn | 2003-09-17 22:41:01 +0000 |
commit | c1a678afeb5100a99030bb51782e5de98d771997 (patch) | |
tree | bae1b38145179bae284a14c983c9541db7644f8c /gui | |
parent | 0b16afb067a7b3f09a97507675eaa4872a59df38 (diff) | |
download | scummvm-rg350-c1a678afeb5100a99030bb51782e5de98d771997.tar.gz scummvm-rg350-c1a678afeb5100a99030bb51782e5de98d771997.tar.bz2 scummvm-rg350-c1a678afeb5100a99030bb51782e5de98d771997.zip |
new module 'base'; moved gameDetector.*, main.cpp and base/plugins.* there (this removes the need for an ugly hack in the build system, and is also conceptionally cleaner)
svn-id: r10282
Diffstat (limited to 'gui')
-rw-r--r-- | gui/launcher.cpp | 5 | ||||
-rw-r--r-- | gui/options.cpp | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/gui/launcher.cpp b/gui/launcher.cpp index d157160bbc..dc62755e3f 100644 --- a/gui/launcher.cpp +++ b/gui/launcher.cpp @@ -32,10 +32,11 @@ #include "backends/fs/fs.h" +#include "base/gameDetector.h" +#include "base/plugins.h" + #include "common/config-file.h" #include "common/engine.h" -#include "common/gameDetector.h" -#include "common/plugins.h" enum { kStartCmd = 'STRT', diff --git a/gui/options.cpp b/gui/options.cpp index 9072b0b2a6..abba0229e0 100644 --- a/gui/options.cpp +++ b/gui/options.cpp @@ -27,7 +27,7 @@ #include "backends/fs/fs.h" #include "common/config-file.h" -#include "common/gameDetector.h" +#include "base/gameDetector.h" #if (!( defined(__DC__) || defined(__GP32__)) && !defined(_MSC_VER)) #include <unistd.h> |