diff options
author | Lars Persson | 2006-04-21 20:56:53 +0000 |
---|---|---|
committer | Lars Persson | 2006-04-21 20:56:53 +0000 |
commit | aec70b0bb2c86949b165630d20e99af0d47104a5 (patch) | |
tree | 1349cda77c617d978f1ee63b18bdf76cff692fc1 | |
parent | 7b80324c6dad4f3b250b58a827bbf0077e69b9e7 (diff) | |
download | scummvm-rg350-aec70b0bb2c86949b165630d20e99af0d47104a5.tar.gz scummvm-rg350-aec70b0bb2c86949b165630d20e99af0d47104a5.tar.bz2 scummvm-rg350-aec70b0bb2c86949b165630d20e99af0d47104a5.zip |
Implementation and declartion in intern.h differed. Changed so both is using the same datatype.
svn-id: r22074
-rw-r--r-- | graphics/scaler/intern.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/scaler/intern.h b/graphics/scaler/intern.h index cf8fa9b285..43356a23b9 100644 --- a/graphics/scaler/intern.h +++ b/graphics/scaler/intern.h @@ -142,7 +142,7 @@ static inline bool diffYUV(int yuv1, int yuv2) { * 16bit RGB to YUV conversion table. This table is setup by InitLUT(). * Used by the hq scaler family. */ -extern "C" uint *RGBtoYUV; +extern "C" uint32 *RGBtoYUV; /** Auxiliary macro to simplify creating those template function wrappers. */ #define MAKE_WRAPPER(FUNC) \ |