diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/scaler/thumbnail.cpp | 3 | ||||
-rw-r--r-- | common/stdafx.h | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/common/scaler/thumbnail.cpp b/common/scaler/thumbnail.cpp index 8ada19a670..49d2eb9154 100644 --- a/common/scaler/thumbnail.cpp +++ b/common/scaler/thumbnail.cpp @@ -24,7 +24,6 @@ #include "common/scummsys.h" #include "common/system.h" -#include "common/scaler.h" #include "common/scaler/intern.h" template<int bitFormat> @@ -69,6 +68,8 @@ void createThumbnail_4(const uint8* src, uint32 srcPitch, uint8* dstPtr, uint32 } } +#include "common/scaler.h" + void createThumbnail(const uint8* src, uint32 srcPitch, uint8* dstPtr, uint32 dstPitch, int width, int height) { // only 1/2 and 1/4 downscale supported if (width != 320 && width != 640) diff --git a/common/stdafx.h b/common/stdafx.h index ea386476dc..2e2defd655 100644 --- a/common/stdafx.h +++ b/common/stdafx.h @@ -115,7 +115,7 @@ #endif #if !defined(macintosh) && !defined(PALMOS_ARM) #include <sys/types.h> -#if !defined(__PLAYSTATION2__) && !defined(__PSP__) && !defined(__amigaos4__) +#if !defined(__PLAYSTATION2__) && !defined(__PSP__) && !defined(__amigaos4__) && !defined(__SYMBIAN32__,) #include <sys/uio.h> #endif #if !defined(__amigaos4__) |