diff options
author | Max Horn | 2003-08-01 12:21:04 +0000 |
---|---|---|
committer | Max Horn | 2003-08-01 12:21:04 +0000 |
commit | 0df319e9520aa6fdcaff96f91826ccd7cff2c14a (patch) | |
tree | 665b51bddbe987051981456dcf7c8c175bbf316c /backends | |
parent | 64aa3229ad5757d88553531f8c88198711994ac3 (diff) | |
download | scummvm-rg350-0df319e9520aa6fdcaff96f91826ccd7cff2c14a.tar.gz scummvm-rg350-0df319e9520aa6fdcaff96f91826ccd7cff2c14a.tar.bz2 scummvm-rg350-0df319e9520aa6fdcaff96f91826ccd7cff2c14a.zip |
#include cleanup (explicityl specify the location for headers from common/, so that we at some point can get rid of -Icommon; exception is made for stdafx.h, since a) we might want to rename it and b) might want to move it to the top level)
svn-id: r9359
Diffstat (limited to 'backends')
-rw-r--r-- | backends/PalmOS/Src/palm.h | 2 | ||||
-rw-r--r-- | backends/null/null.cpp | 4 | ||||
-rw-r--r-- | backends/sdl/sdl-common.h | 6 |
3 files changed, 6 insertions, 6 deletions
diff --git a/backends/PalmOS/Src/palm.h b/backends/PalmOS/Src/palm.h index c2524c95aa..4512124b68 100644 --- a/backends/PalmOS/Src/palm.h +++ b/backends/PalmOS/Src/palm.h @@ -24,7 +24,7 @@ #define PALM_H #include <SonyClie.h> -#include "system.h" +#include "common/system.h" Err HwrDisplayPalette(UInt8 operation, Int16 startIndex, UInt16 paletteEntries, RGBColorType *tableP) diff --git a/backends/null/null.cpp b/backends/null/null.cpp index 8098445a89..b4eb5f87c9 100644 --- a/backends/null/null.cpp +++ b/backends/null/null.cpp @@ -20,8 +20,8 @@ */ #include "stdafx.h" -#include "scummsys.h" -#include "system.h" +#include "common/scummsys.h" +#include "common/system.h" #if defined(USE_NULL_DRIVER) diff --git a/backends/sdl/sdl-common.h b/backends/sdl/sdl-common.h index b1024d1f15..a626858382 100644 --- a/backends/sdl/sdl-common.h +++ b/backends/sdl/sdl-common.h @@ -22,9 +22,9 @@ #ifndef SDL_COMMON_H #define SDL_COMMON_H -#include "stdafx.h" -#include "scummsys.h" -#include "system.h" +#include "common/stdafx.h" +#include "common/scummsys.h" +#include "common/system.h" #include "backends/intern.h" #include <SDL.h> |