diff options
author | Max Horn | 2005-06-24 15:23:51 +0000 |
---|---|---|
committer | Max Horn | 2005-06-24 15:23:51 +0000 |
commit | 8b1d7b916673078d20f15540f9cc2f531340ba97 (patch) | |
tree | 8473b085eb77b7ff7ec7ce5f9457307a27832042 /common/scaler | |
parent | 68907449b75479481348af5d3d4842a96b7651f6 (diff) | |
download | scummvm-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 'common/scaler')
-rw-r--r-- | common/scaler/intern.h | 2 | ||||
-rw-r--r-- | common/scaler/thumbnail.cpp | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/common/scaler/intern.h b/common/scaler/intern.h index bb20a43748..fd0ac33778 100644 --- a/common/scaler/intern.h +++ b/common/scaler/intern.h @@ -24,7 +24,7 @@ #ifndef COMMON_SCALER_INTERN_H #define COMMON_SCALER_INTERN_H -#include "stdafx.h" +#include "common/stdafx.h" #include "common/scummsys.h" template<int bitFormat> diff --git a/common/scaler/thumbnail.cpp b/common/scaler/thumbnail.cpp index 6bca8e9f4a..bdbd5d0104 100644 --- a/common/scaler/thumbnail.cpp +++ b/common/scaler/thumbnail.cpp @@ -20,12 +20,12 @@ * */ -#include "stdafx.h" +#include "common/stdafx.h" #include "common/scummsys.h" #include "common/system.h" -#include "scaler.h" -#include "scaler/intern.h" +#include "common/scaler.h" +#include "common/scaler/intern.h" template<int bitFormat> uint16 quadBlockInterpolate(const uint8* src, uint32 srcPitch) { |