aboutsummaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
authorMax Horn2005-06-24 15:23:51 +0000
committerMax Horn2005-06-24 15:23:51 +0000
commit8b1d7b916673078d20f15540f9cc2f531340ba97 (patch)
tree8473b085eb77b7ff7ec7ce5f9457307a27832042 /backends
parent68907449b75479481348af5d3d4842a96b7651f6 (diff)
downloadscummvm-rg350-8b1d7b916673078d20f15540f9cc2f531340ba97.tar.gz
scummvm-rg350-8b1d7b916673078d20f15540f9cc2f531340ba97.tar.bz2
scummvm-rg350-8b1d7b916673078d20f15540f9cc2f531340ba97.zip
When including files from common/, explicitly use the common/ prefix
svn-id: r18444
Diffstat (limited to 'backends')
-rw-r--r--backends/PalmOS/Src/cd_default.cpp2
-rw-r--r--backends/PalmOS/Src/cd_msa.cpp2
-rw-r--r--backends/PalmOS/Src/cd_pockettunes.cpp2
-rw-r--r--backends/PalmOS/Src/forms/formmain.cpp2
-rw-r--r--backends/PalmOS/Src/palm.cpp2
-rw-r--r--backends/PalmOS/Src/palmevt.cpp2
-rw-r--r--backends/PalmOS/Src/palmgfx.cpp2
-rw-r--r--backends/PalmOS/Src/palmmos.cpp2
-rw-r--r--backends/PalmOS/Src/palmovl.cpp2
-rw-r--r--backends/PalmOS/Src/palmrdr.cpp2
-rw-r--r--backends/PalmOS/Src/palmsave.cpp2
-rw-r--r--backends/PalmOS/Src/palmsnd.cpp2
-rw-r--r--backends/PalmOS/Src/snd_stream.cpp2
-rw-r--r--backends/fs/fs.cpp2
-rw-r--r--backends/fs/palmos/palmos-fs.cpp2
-rw-r--r--backends/fs/posix/posix-fs.cpp2
-rw-r--r--backends/fs/symbian/symbian-fs.cpp2
-rw-r--r--backends/fs/windows/windows-fs.cpp2
-rw-r--r--backends/gp32/gp-fs.cpp2
-rw-r--r--backends/midi/alsa.cpp2
-rw-r--r--backends/midi/coreaudio.cpp2
-rw-r--r--backends/midi/morphos.cpp2
-rw-r--r--backends/midi/null.cpp2
-rw-r--r--backends/midi/seq.cpp2
-rw-r--r--backends/midi/windows.cpp2
-rw-r--r--backends/midi/ypa1.cpp2
-rw-r--r--backends/midi/zodiac.cpp2
-rw-r--r--backends/morphos/morphos.cpp2
-rw-r--r--backends/morphos/morphos_scaler.cpp2
-rw-r--r--backends/morphos/morphos_sound.cpp2
-rw-r--r--backends/morphos/morphos_start.cpp2
-rw-r--r--backends/morphos/morphos_timer.cpp2
-rw-r--r--backends/null/null.cpp2
-rw-r--r--backends/ps2/fileio.h2
-rw-r--r--backends/ps2/savefile.cpp2
-rw-r--r--backends/ps2/systemps2.cpp4
-rw-r--r--backends/ps2/systemps2.h4
-rw-r--r--backends/wince/CEActions.cpp2
-rw-r--r--backends/wince/CEActionsPocket.cpp2
-rw-r--r--backends/wince/CEActionsSmartphone.cpp2
-rw-r--r--backends/wince/CEDevice.cpp2
-rw-r--r--backends/wince/CEKeysDialog.cpp2
-rw-r--r--backends/wince/CELauncherDialog.cpp2
-rw-r--r--backends/wince/CEScaler.cpp2
-rw-r--r--backends/wince/CEgui/GUIElement.cpp2
-rw-r--r--backends/wince/CEgui/ItemAction.cpp2
-rw-r--r--backends/wince/CEgui/ItemSwitch.cpp2
-rw-r--r--backends/wince/CEgui/Panel.cpp2
-rw-r--r--backends/wince/CEgui/PanelItem.cpp2
-rw-r--r--backends/wince/CEgui/PanelKeyboard.cpp2
-rw-r--r--backends/wince/CEgui/SDL_ImageResource.cpp2
-rw-r--r--backends/wince/CEgui/Toolbar.cpp2
-rw-r--r--backends/wince/CEgui/ToolbarHandler.cpp2
-rw-r--r--backends/wince/CEkeys/EventsBuffer.cpp2
-rw-r--r--backends/wince/CEkeys/Key.cpp2
55 files changed, 57 insertions, 57 deletions
diff --git a/backends/PalmOS/Src/cd_default.cpp b/backends/PalmOS/Src/cd_default.cpp
index ed12204055..233f27687b 100644
--- a/backends/PalmOS/Src/cd_default.cpp
+++ b/backends/PalmOS/Src/cd_default.cpp
@@ -19,7 +19,7 @@
* $Header$
*
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "common/system.h"
#include "cd_default.h"
diff --git a/backends/PalmOS/Src/cd_msa.cpp b/backends/PalmOS/Src/cd_msa.cpp
index be99d97169..a5eeacb507 100644
--- a/backends/PalmOS/Src/cd_msa.cpp
+++ b/backends/PalmOS/Src/cd_msa.cpp
@@ -20,7 +20,7 @@
*
*/
#include <SonyClie.h>
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "common/system.h"
#include "cd_msa.h"
#include "start.h" // for appFileCreat
diff --git a/backends/PalmOS/Src/cd_pockettunes.cpp b/backends/PalmOS/Src/cd_pockettunes.cpp
index b97802ca61..de620275f2 100644
--- a/backends/PalmOS/Src/cd_pockettunes.cpp
+++ b/backends/PalmOS/Src/cd_pockettunes.cpp
@@ -19,7 +19,7 @@
* $Header$
*
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "common/system.h"
#include "common/config-manager.h"
diff --git a/backends/PalmOS/Src/forms/formmain.cpp b/backends/PalmOS/Src/forms/formmain.cpp
index d4a62e8e9a..cb8d875eb3 100644
--- a/backends/PalmOS/Src/forms/formmain.cpp
+++ b/backends/PalmOS/Src/forms/formmain.cpp
@@ -7,7 +7,7 @@
#include "scumm_globals.h"
#include "globals.h"
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "version.h"
#include "formEditGame.h"
diff --git a/backends/PalmOS/Src/palm.cpp b/backends/PalmOS/Src/palm.cpp
index b4009f5882..0f32ae9e2b 100644
--- a/backends/PalmOS/Src/palm.cpp
+++ b/backends/PalmOS/Src/palm.cpp
@@ -19,7 +19,7 @@
* $Header$
*
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "palm.h"
#include "scumm.h"
diff --git a/backends/PalmOS/Src/palmevt.cpp b/backends/PalmOS/Src/palmevt.cpp
index d15eedb2c3..c4539d2b35 100644
--- a/backends/PalmOS/Src/palmevt.cpp
+++ b/backends/PalmOS/Src/palmevt.cpp
@@ -20,7 +20,7 @@
*
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "palm.h"
#include "common/scaler.h"
diff --git a/backends/PalmOS/Src/palmgfx.cpp b/backends/PalmOS/Src/palmgfx.cpp
index 594d6645a7..5248a2838a 100644
--- a/backends/PalmOS/Src/palmgfx.cpp
+++ b/backends/PalmOS/Src/palmgfx.cpp
@@ -19,7 +19,7 @@
* $Header$
*
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "palm.h"
#include "common/scaler.h"
diff --git a/backends/PalmOS/Src/palmmos.cpp b/backends/PalmOS/Src/palmmos.cpp
index 75a28bdf41..69400b59b2 100644
--- a/backends/PalmOS/Src/palmmos.cpp
+++ b/backends/PalmOS/Src/palmmos.cpp
@@ -19,7 +19,7 @@
* $Header$
*
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "palm.h"
diff --git a/backends/PalmOS/Src/palmovl.cpp b/backends/PalmOS/Src/palmovl.cpp
index 7d458c02cd..80babec563 100644
--- a/backends/PalmOS/Src/palmovl.cpp
+++ b/backends/PalmOS/Src/palmovl.cpp
@@ -19,7 +19,7 @@
* $Header$
*
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "palm.h"
void OSystem_PALMOS::showOverlay() {
diff --git a/backends/PalmOS/Src/palmrdr.cpp b/backends/PalmOS/Src/palmrdr.cpp
index 42f8ccf354..fcebafb9f0 100644
--- a/backends/PalmOS/Src/palmrdr.cpp
+++ b/backends/PalmOS/Src/palmrdr.cpp
@@ -19,7 +19,7 @@
* $Header$
*
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "palm.h"
#include "rumble.h"
diff --git a/backends/PalmOS/Src/palmsave.cpp b/backends/PalmOS/Src/palmsave.cpp
index a13a112e0f..9c0ef08b79 100644
--- a/backends/PalmOS/Src/palmsave.cpp
+++ b/backends/PalmOS/Src/palmsave.cpp
@@ -21,7 +21,7 @@
*/
#include <ctype.h>
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "palm.h"
#define MAX_BLOCK 64000 // store in memory, before dump to file
diff --git a/backends/PalmOS/Src/palmsnd.cpp b/backends/PalmOS/Src/palmsnd.cpp
index a6bf8090e1..40ab498e8a 100644
--- a/backends/PalmOS/Src/palmsnd.cpp
+++ b/backends/PalmOS/Src/palmsnd.cpp
@@ -20,7 +20,7 @@
*
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "common/config-manager.h"
#include "palm.h"
diff --git a/backends/PalmOS/Src/snd_stream.cpp b/backends/PalmOS/Src/snd_stream.cpp
index 43e9333e8f..c2776ab029 100644
--- a/backends/PalmOS/Src/snd_stream.cpp
+++ b/backends/PalmOS/Src/snd_stream.cpp
@@ -1,4 +1,4 @@
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "palm.h"
Err sndCallback(void* UserDataP, SndStreamRef stream, void* bufferP, UInt32 *bufferSizeP) {
diff --git a/backends/fs/fs.cpp b/backends/fs/fs.cpp
index 8b847a05d0..39a3528353 100644
--- a/backends/fs/fs.cpp
+++ b/backends/fs/fs.cpp
@@ -18,7 +18,7 @@
* $Header$
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "backends/fs/fs.h"
#include "common/util.h"
diff --git a/backends/fs/palmos/palmos-fs.cpp b/backends/fs/palmos/palmos-fs.cpp
index 5ef8dc80e7..96be354afc 100644
--- a/backends/fs/palmos/palmos-fs.cpp
+++ b/backends/fs/palmos/palmos-fs.cpp
@@ -20,7 +20,7 @@
#if defined(__PALMOS_TRAPS__)
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "../fs.h"
#include <stdio.h>
#include <stdlib.h>
diff --git a/backends/fs/posix/posix-fs.cpp b/backends/fs/posix/posix-fs.cpp
index eb72389d26..0224eb67a2 100644
--- a/backends/fs/posix/posix-fs.cpp
+++ b/backends/fs/posix/posix-fs.cpp
@@ -20,7 +20,7 @@
#if defined(UNIX) || defined(__DC__)
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "../fs.h"
diff --git a/backends/fs/symbian/symbian-fs.cpp b/backends/fs/symbian/symbian-fs.cpp
index 8a0f3b3a2a..ef9ad4a5d8 100644
--- a/backends/fs/symbian/symbian-fs.cpp
+++ b/backends/fs/symbian/symbian-fs.cpp
@@ -22,7 +22,7 @@
*/
#if defined (__SYMBIAN32__)
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "../fs.h"
//#include <sys/param.h>
diff --git a/backends/fs/windows/windows-fs.cpp b/backends/fs/windows/windows-fs.cpp
index 4ddece6b3a..2de92b83f1 100644
--- a/backends/fs/windows/windows-fs.cpp
+++ b/backends/fs/windows/windows-fs.cpp
@@ -20,7 +20,7 @@
#ifdef WIN32
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "../fs.h"
#include <stdio.h>
#include <stdlib.h>
diff --git a/backends/gp32/gp-fs.cpp b/backends/gp32/gp-fs.cpp
index f752282ff5..fa204c1973 100644
--- a/backends/gp32/gp-fs.cpp
+++ b/backends/gp32/gp-fs.cpp
@@ -24,7 +24,7 @@
#if defined (__GP32__)
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "backends/gp32/gp32.h"
#include "backends/fs/fs.h"
diff --git a/backends/midi/alsa.cpp b/backends/midi/alsa.cpp
index 77a14f4a70..81d264965f 100644
--- a/backends/midi/alsa.cpp
+++ b/backends/midi/alsa.cpp
@@ -27,7 +27,7 @@
#include "sound/mpu401.h"
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "common/util.h"
#include "common/config-manager.h"
diff --git a/backends/midi/coreaudio.cpp b/backends/midi/coreaudio.cpp
index b32fee88c1..8ed208575d 100644
--- a/backends/midi/coreaudio.cpp
+++ b/backends/midi/coreaudio.cpp
@@ -20,7 +20,7 @@
#ifdef MACOSX
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "common/config-manager.h"
#include "common/util.h"
#include "sound/mpu401.h"
diff --git a/backends/midi/morphos.cpp b/backends/midi/morphos.cpp
index efd8d5a1d1..74567cae03 100644
--- a/backends/midi/morphos.cpp
+++ b/backends/midi/morphos.cpp
@@ -29,7 +29,7 @@
#include <proto/dos.h>
#include <proto/etude.h>
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "sound/mpu401.h"
#include "common/util.h"
#include "morphos.h"
diff --git a/backends/midi/null.cpp b/backends/midi/null.cpp
index 7d785ebb17..d7cfc3d4e8 100644
--- a/backends/midi/null.cpp
+++ b/backends/midi/null.cpp
@@ -18,7 +18,7 @@
* $Header$
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "sound/mpu401.h"
/* NULL driver */
diff --git a/backends/midi/seq.cpp b/backends/midi/seq.cpp
index 46917f5a46..3999ebc91f 100644
--- a/backends/midi/seq.cpp
+++ b/backends/midi/seq.cpp
@@ -27,7 +27,7 @@
#if defined(UNIX) && !defined(__BEOS__)
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "sound/mpu401.h"
#include "common/util.h"
diff --git a/backends/midi/windows.cpp b/backends/midi/windows.cpp
index dd21fffa10..482a9ee70f 100644
--- a/backends/midi/windows.cpp
+++ b/backends/midi/windows.cpp
@@ -20,7 +20,7 @@
#if defined(WIN32) && !defined(_WIN32_WCE)
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "sound/mpu401.h"
#include "common/util.h"
diff --git a/backends/midi/ypa1.cpp b/backends/midi/ypa1.cpp
index e3ef2cab15..10d353997d 100644
--- a/backends/midi/ypa1.cpp
+++ b/backends/midi/ypa1.cpp
@@ -18,7 +18,7 @@
* $Header$
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "sound/mpu401.h"
#include "common/util.h"
diff --git a/backends/midi/zodiac.cpp b/backends/midi/zodiac.cpp
index 8591e852f6..8fb4304dc1 100644
--- a/backends/midi/zodiac.cpp
+++ b/backends/midi/zodiac.cpp
@@ -18,7 +18,7 @@
* $Header$
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "sound/mpu401.h"
#include "common/util.h"
diff --git a/backends/morphos/morphos.cpp b/backends/morphos/morphos.cpp
index 987e43178e..72dc4ce7a1 100644
--- a/backends/morphos/morphos.cpp
+++ b/backends/morphos/morphos.cpp
@@ -21,7 +21,7 @@
*
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "engine.h"
#include "common/util.h"
#include "scumm/scumm.h"
diff --git a/backends/morphos/morphos_scaler.cpp b/backends/morphos/morphos_scaler.cpp
index 16db97cdb8..d713978caf 100644
--- a/backends/morphos/morphos_scaler.cpp
+++ b/backends/morphos/morphos_scaler.cpp
@@ -18,7 +18,7 @@
* $Header$
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "engine.h"
#include <exec/types.h>
diff --git a/backends/morphos/morphos_sound.cpp b/backends/morphos/morphos_sound.cpp
index 70b344389d..363b83e9d4 100644
--- a/backends/morphos/morphos_sound.cpp
+++ b/backends/morphos/morphos_sound.cpp
@@ -21,7 +21,7 @@
*
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "engine.h"
#include <dos/dos.h>
diff --git a/backends/morphos/morphos_start.cpp b/backends/morphos/morphos_start.cpp
index 1227506976..2c25e0e61a 100644
--- a/backends/morphos/morphos_start.cpp
+++ b/backends/morphos/morphos_start.cpp
@@ -33,7 +33,7 @@
#include <proto/cdda.h>
#include <proto/icon.h>
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "scumm/scumm.h"
#include "base/gameDetector.h"
#include "common/scaler.h"
diff --git a/backends/morphos/morphos_timer.cpp b/backends/morphos/morphos_timer.cpp
index 51977f0dd7..d129b0c274 100644
--- a/backends/morphos/morphos_timer.cpp
+++ b/backends/morphos/morphos_timer.cpp
@@ -18,7 +18,7 @@
* $Header$
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "engine.h"
#include <exec/memory.h>
diff --git a/backends/null/null.cpp b/backends/null/null.cpp
index a85c83d8be..bed51cd68f 100644
--- a/backends/null/null.cpp
+++ b/backends/null/null.cpp
@@ -19,7 +19,7 @@
*
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "common/scummsys.h"
#include "common/system.h"
diff --git a/backends/ps2/fileio.h b/backends/ps2/fileio.h
index fc10ad8bd8..48c9c7df5d 100644
--- a/backends/ps2/fileio.h
+++ b/backends/ps2/fileio.h
@@ -22,7 +22,7 @@
#ifndef __PS2FILE_IO__
#define __PS2FILE_IO__
-#include "scummsys.h"
+#include "common/scummsys.h"
class Ps2File {
public:
diff --git a/backends/ps2/savefile.cpp b/backends/ps2/savefile.cpp
index 05539c5ab1..2e8276afb8 100644
--- a/backends/ps2/savefile.cpp
+++ b/backends/ps2/savefile.cpp
@@ -30,7 +30,7 @@
#include "backends/ps2/Gs2dScreen.h"
#include "backends/ps2/asyncfio.h"
#include "backends/ps2/systemps2.h"
-#include "scummsys.h"
+#include "common/scummsys.h"
extern AsyncFio fio;
diff --git a/backends/ps2/systemps2.cpp b/backends/ps2/systemps2.cpp
index 33c93fb753..7bb95ec4c9 100644
--- a/backends/ps2/systemps2.cpp
+++ b/backends/ps2/systemps2.cpp
@@ -19,7 +19,7 @@
*
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include <kernel.h>
#include <stdio.h>
#include <stdlib.h>
@@ -31,7 +31,7 @@
#include <iopcontrol.h>
#include <iopheap.h>
#include <osd_config.h>
-#include "scummsys.h"
+#include "common/scummsys.h"
#include "../intern.h"
#include "base/engine.h"
#include "backends/ps2/systemps2.h"
diff --git a/backends/ps2/systemps2.h b/backends/ps2/systemps2.h
index 01eb5c6f40..3c0a0efb9f 100644
--- a/backends/ps2/systemps2.h
+++ b/backends/ps2/systemps2.h
@@ -22,8 +22,8 @@
#ifndef SYSTEMPS2_H
#define SYSTEMPS2_H
-#include "stdafx.h"
-#include "system.h"
+#include "common/stdafx.h"
+#include "common/system.h"
class Gs2dScreen;
class Ps2Input;
diff --git a/backends/wince/CEActions.cpp b/backends/wince/CEActions.cpp
index aeb4f2025f..97be4e902a 100644
--- a/backends/wince/CEActions.cpp
+++ b/backends/wince/CEActions.cpp
@@ -19,7 +19,7 @@
*
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "CEActions.h"
#include "CEActionsPocket.h"
#include "CEActionsSmartphone.h"
diff --git a/backends/wince/CEActionsPocket.cpp b/backends/wince/CEActionsPocket.cpp
index 8ed93e341b..342a3baa28 100644
--- a/backends/wince/CEActionsPocket.cpp
+++ b/backends/wince/CEActionsPocket.cpp
@@ -20,7 +20,7 @@
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "CEActionsPocket.h"
#include "EventsBuffer.h"
diff --git a/backends/wince/CEActionsSmartphone.cpp b/backends/wince/CEActionsSmartphone.cpp
index 9ded7cc8ac..b732360f28 100644
--- a/backends/wince/CEActionsSmartphone.cpp
+++ b/backends/wince/CEActionsSmartphone.cpp
@@ -23,7 +23,7 @@
//#ifdef WIN32_PLATFORM_WFSP
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "CEActionsSmartphone.h"
#include "EventsBuffer.h"
diff --git a/backends/wince/CEDevice.cpp b/backends/wince/CEDevice.cpp
index 3f7121ddfd..3461569e4c 100644
--- a/backends/wince/CEDevice.cpp
+++ b/backends/wince/CEDevice.cpp
@@ -19,7 +19,7 @@
*
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "CEDevice.h"
#include <SDL.h>
diff --git a/backends/wince/CEKeysDialog.cpp b/backends/wince/CEKeysDialog.cpp
index a4575b4e02..2a79d5afce 100644
--- a/backends/wince/CEKeysDialog.cpp
+++ b/backends/wince/CEKeysDialog.cpp
@@ -19,7 +19,7 @@
*
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "CEKeysDialog.h"
#include "CEActions.h"
diff --git a/backends/wince/CELauncherDialog.cpp b/backends/wince/CELauncherDialog.cpp
index afc6943f13..c1ac0f8534 100644
--- a/backends/wince/CELauncherDialog.cpp
+++ b/backends/wince/CELauncherDialog.cpp
@@ -19,7 +19,7 @@
*
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "wince-sdl.h"
diff --git a/backends/wince/CEScaler.cpp b/backends/wince/CEScaler.cpp
index f0b8263e86..e07c7f8ad2 100644
--- a/backends/wince/CEScaler.cpp
+++ b/backends/wince/CEScaler.cpp
@@ -19,7 +19,7 @@
*
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "CEScaler.h"
int redblueMasks[] = { 0x7C1F, 0xF81F };
diff --git a/backends/wince/CEgui/GUIElement.cpp b/backends/wince/CEgui/GUIElement.cpp
index 2e89d87003..b5732f4653 100644
--- a/backends/wince/CEgui/GUIElement.cpp
+++ b/backends/wince/CEgui/GUIElement.cpp
@@ -19,7 +19,7 @@
*
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "Toolbar.h"
#include "SDL_ImageResource.h"
diff --git a/backends/wince/CEgui/ItemAction.cpp b/backends/wince/CEgui/ItemAction.cpp
index cfe880988b..a801b9b820 100644
--- a/backends/wince/CEgui/ItemAction.cpp
+++ b/backends/wince/CEgui/ItemAction.cpp
@@ -19,7 +19,7 @@
*
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "ItemAction.h"
namespace CEGUI {
diff --git a/backends/wince/CEgui/ItemSwitch.cpp b/backends/wince/CEgui/ItemSwitch.cpp
index 454a3be49c..5f020e0914 100644
--- a/backends/wince/CEgui/ItemSwitch.cpp
+++ b/backends/wince/CEgui/ItemSwitch.cpp
@@ -19,7 +19,7 @@
*
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "ItemSwitch.h"
namespace CEGUI {
diff --git a/backends/wince/CEgui/Panel.cpp b/backends/wince/CEgui/Panel.cpp
index 5c236dee72..a76c202690 100644
--- a/backends/wince/CEgui/Panel.cpp
+++ b/backends/wince/CEgui/Panel.cpp
@@ -19,7 +19,7 @@
*
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "Panel.h"
namespace CEGUI {
diff --git a/backends/wince/CEgui/PanelItem.cpp b/backends/wince/CEgui/PanelItem.cpp
index 6e901d5864..6d0cd1c5aa 100644
--- a/backends/wince/CEgui/PanelItem.cpp
+++ b/backends/wince/CEgui/PanelItem.cpp
@@ -19,7 +19,7 @@
*
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "PanelItem.h"
namespace CEGUI {
diff --git a/backends/wince/CEgui/PanelKeyboard.cpp b/backends/wince/CEgui/PanelKeyboard.cpp
index 395785d5fc..a7c43f3c68 100644
--- a/backends/wince/CEgui/PanelKeyboard.cpp
+++ b/backends/wince/CEgui/PanelKeyboard.cpp
@@ -19,7 +19,7 @@
*
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "PanelKeyboard.h"
namespace CEGUI {
diff --git a/backends/wince/CEgui/SDL_ImageResource.cpp b/backends/wince/CEgui/SDL_ImageResource.cpp
index ff52931056..b42fb37f41 100644
--- a/backends/wince/CEgui/SDL_ImageResource.cpp
+++ b/backends/wince/CEgui/SDL_ImageResource.cpp
@@ -19,7 +19,7 @@
*
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "SDL_ImageResource.h"
namespace CEGUI {
diff --git a/backends/wince/CEgui/Toolbar.cpp b/backends/wince/CEgui/Toolbar.cpp
index 324439145b..e2829b1aa6 100644
--- a/backends/wince/CEgui/Toolbar.cpp
+++ b/backends/wince/CEgui/Toolbar.cpp
@@ -19,7 +19,7 @@
*
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "Toolbar.h"
namespace CEGUI {
diff --git a/backends/wince/CEgui/ToolbarHandler.cpp b/backends/wince/CEgui/ToolbarHandler.cpp
index e4496857d1..4f9d28c9ef 100644
--- a/backends/wince/CEgui/ToolbarHandler.cpp
+++ b/backends/wince/CEgui/ToolbarHandler.cpp
@@ -19,7 +19,7 @@
*
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "ToolbarHandler.h"
namespace CEGUI {
diff --git a/backends/wince/CEkeys/EventsBuffer.cpp b/backends/wince/CEkeys/EventsBuffer.cpp
index 70da6cd435..cad8e29f29 100644
--- a/backends/wince/CEkeys/EventsBuffer.cpp
+++ b/backends/wince/CEkeys/EventsBuffer.cpp
@@ -19,7 +19,7 @@
*
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "EventsBuffer.h"
namespace CEKEYS {
diff --git a/backends/wince/CEkeys/Key.cpp b/backends/wince/CEkeys/Key.cpp
index 1b28449b63..1cf9f0eaa2 100644
--- a/backends/wince/CEkeys/Key.cpp
+++ b/backends/wince/CEkeys/Key.cpp
@@ -19,7 +19,7 @@
*
*/
-#include "stdafx.h"
+#include "common/stdafx.h"
#include "Key.h"
namespace CEKEYS {