diff options
author | Max Horn | 2003-09-18 02:07:18 +0000 |
---|---|---|
committer | Max Horn | 2003-09-18 02:07:18 +0000 |
commit | be9d4066e147e1f7eebd5b554f11b876f93f3ae9 (patch) | |
tree | 98416196bcb39d49d4effb582a6e0bba165249b1 /backends | |
parent | ec0d41137ca8bf414f674afd6f6103ad6e9bf0ac (diff) | |
download | scummvm-rg350-be9d4066e147e1f7eebd5b554f11b876f93f3ae9.tar.gz scummvm-rg350-be9d4066e147e1f7eebd5b554f11b876f93f3ae9.tar.bz2 scummvm-rg350-be9d4066e147e1f7eebd5b554f11b876f93f3ae9.zip |
moved engine.* to base; this fixes some linking issues when building a barebone ScummVM (or maybe I just want to increase our CVS stats? <g>)
svn-id: r10287
Diffstat (limited to 'backends')
-rw-r--r-- | backends/PalmOS/Src/palmsave.cpp | 2 | ||||
-rw-r--r-- | backends/dc/audio.cpp | 2 | ||||
-rw-r--r-- | backends/dc/dc-fs.cpp | 2 | ||||
-rw-r--r-- | backends/dc/dcmain.cpp | 2 | ||||
-rw-r--r-- | backends/dc/display.cpp | 2 | ||||
-rw-r--r-- | backends/dc/selector.cpp | 2 | ||||
-rw-r--r-- | backends/dc/vmsave.cpp | 2 | ||||
-rw-r--r-- | backends/fs/morphos/abox-fs.cpp | 2 | ||||
-rw-r--r-- | backends/gp32/gp32.h | 2 | ||||
-rw-r--r-- | backends/midi/adlib.cpp | 2 | ||||
-rw-r--r-- | backends/midi/morphos.cpp | 2 | ||||
-rw-r--r-- | backends/midi/ypa1.cpp | 2 | ||||
-rw-r--r-- | backends/x11/x11.cpp | 2 |
13 files changed, 13 insertions, 13 deletions
diff --git a/backends/PalmOS/Src/palmsave.cpp b/backends/PalmOS/Src/palmsave.cpp index caf2d1c885..44e4260300 100644 --- a/backends/PalmOS/Src/palmsave.cpp +++ b/backends/PalmOS/Src/palmsave.cpp @@ -22,7 +22,7 @@ #include <ctype.h> #include "common/scummsys.h" -#include "common/engine.h" +#include "base/engine.h" #include "scumm/saveload.h" #include "palm.h" diff --git a/backends/dc/audio.cpp b/backends/dc/audio.cpp index cfb59cc60d..22c1015189 100644 --- a/backends/dc/audio.cpp +++ b/backends/dc/audio.cpp @@ -22,7 +22,7 @@ #include <common/stdafx.h> #include <common/scummsys.h> -#include <common/engine.h> +#include "base/engine.h" #include "dc.h" EXTERN_C void *memcpy4(void *s1, const void *s2, unsigned int n); diff --git a/backends/dc/dc-fs.cpp b/backends/dc/dc-fs.cpp index 85e6de899b..f86ffb0522 100644 --- a/backends/dc/dc-fs.cpp +++ b/backends/dc/dc-fs.cpp @@ -20,7 +20,7 @@ #include <common/stdafx.h> #include <backends/fs/fs.h> -#include <common/engine.h> +#include "base/engine.h" FilesystemNode *FilesystemNode::getRoot() { error ("No filesystem implemented for DC!"); diff --git a/backends/dc/dcmain.cpp b/backends/dc/dcmain.cpp index 46cdc7b9ab..a9c758a578 100644 --- a/backends/dc/dcmain.cpp +++ b/backends/dc/dcmain.cpp @@ -25,7 +25,7 @@ #include <common/stdafx.h> #include <common/scummsys.h> -#include <common/engine.h> +#include "base/engine.h" #include "dc.h" #include "icon.h" diff --git a/backends/dc/display.cpp b/backends/dc/display.cpp index 6ac642a37b..884ef8c32a 100644 --- a/backends/dc/display.cpp +++ b/backends/dc/display.cpp @@ -22,7 +22,7 @@ #include <common/stdafx.h> #include <common/scummsys.h> -#include <common/engine.h> +#include "base/engine.h" #include "dc.h" #define SCREEN_W 640 diff --git a/backends/dc/selector.cpp b/backends/dc/selector.cpp index 13561531b1..c59b09b129 100644 --- a/backends/dc/selector.cpp +++ b/backends/dc/selector.cpp @@ -22,7 +22,7 @@ #include <common/stdafx.h> #include <common/scummsys.h> -#include <common/engine.h> +#include "base/engine.h" #include <common/gameDetector.h> #include "dc.h" #include "icon.h" diff --git a/backends/dc/vmsave.cpp b/backends/dc/vmsave.cpp index 8eaf06f83c..f9d00f8108 100644 --- a/backends/dc/vmsave.cpp +++ b/backends/dc/vmsave.cpp @@ -22,7 +22,7 @@ #include <common/stdafx.h> #include <common/scummsys.h> -#include <common/engine.h> +#include "base/engine.h" #include "dc.h" #include "icon.h" #include <scumm/saveload.h> diff --git a/backends/fs/morphos/abox-fs.cpp b/backends/fs/morphos/abox-fs.cpp index 203bd88330..05fcb23c1c 100644 --- a/backends/fs/morphos/abox-fs.cpp +++ b/backends/fs/morphos/abox-fs.cpp @@ -24,7 +24,7 @@ #include <stdio.h> -#include "common/engine.h" +#include "base/engine.h" #include "../fs.h" /* diff --git a/backends/gp32/gp32.h b/backends/gp32/gp32.h index b38912ccf2..0b3f3dd338 100644 --- a/backends/gp32/gp32.h +++ b/backends/gp32/gp32.h @@ -25,7 +25,7 @@ #include "common/system.h" #include "common/scummsys.h" #include "common/stdafx.h" -#include "common/engine.h" +#include "base/engine.h" #include "scumm/saveload.h" #include "common/scaler.h" diff --git a/backends/midi/adlib.cpp b/backends/midi/adlib.cpp index 5198609796..2205c56589 100644 --- a/backends/midi/adlib.cpp +++ b/backends/midi/adlib.cpp @@ -22,7 +22,7 @@ #include "sound/mididrv.h" #include "sound/fmopl.h" #include "sound/mixer.h" -#include "common/engine.h" // for g_system +#include "base/engine.h" // for g_system #include "common/util.h" #define BASE_FREQ 250 diff --git a/backends/midi/morphos.cpp b/backends/midi/morphos.cpp index 9e32b6293d..f75839cdd2 100644 --- a/backends/midi/morphos.cpp +++ b/backends/midi/morphos.cpp @@ -31,7 +31,7 @@ #include "stdafx.h" #include "sound/mpu401.h" -#include "common/engine.h" // for g_system +#include "base/engine.h" // for g_system #include "common/util.h" #include "morphos.h" #include "morphos_sound.h" diff --git a/backends/midi/ypa1.cpp b/backends/midi/ypa1.cpp index c779d73ade..e2c12de70b 100644 --- a/backends/midi/ypa1.cpp +++ b/backends/midi/ypa1.cpp @@ -20,7 +20,7 @@ #include "stdafx.h" #include "sound/mpu401.h" -#include "common/engine.h" // for g_system +#include "base/engine.h" // for g_system #include "common/util.h" #include "Pa1Lib.h" diff --git a/backends/x11/x11.cpp b/backends/x11/x11.cpp index 29d394c86d..37b3ec69a4 100644 --- a/backends/x11/x11.cpp +++ b/backends/x11/x11.cpp @@ -24,7 +24,7 @@ #include "backends/intern.h" #include "common/util.h" -#include "common/engine.h" // Only #included for error() and warning() +#include "base/engine.h" // Only #included for error() and warning() #include <stdio.h> #include <assert.h> |