diff options
author | Max Horn | 2003-10-01 17:06:36 +0000 |
---|---|---|
committer | Max Horn | 2003-10-01 17:06:36 +0000 |
commit | 57eb9654b79e088a3cac406fad9b3fedccf30f29 (patch) | |
tree | 2ea434326a2924008440d16f4fc957b8e774614b | |
parent | 628f65b639ee9357935d8f141d43d46825506082 (diff) | |
download | scummvm-rg350-57eb9654b79e088a3cac406fad9b3fedccf30f29.tar.gz scummvm-rg350-57eb9654b79e088a3cac406fad9b3fedccf30f29.tar.bz2 scummvm-rg350-57eb9654b79e088a3cac406fad9b3fedccf30f29.zip |
make MSVC7 happy
svn-id: r10524
-rw-r--r-- | common/scaler/intern.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common/scaler/intern.h b/common/scaler/intern.h index 69af4a2230..daf76a0d11 100644 --- a/common/scaler/intern.h +++ b/common/scaler/intern.h @@ -39,6 +39,7 @@ template<int bitFormat> struct ColorMasks { }; +template<> struct ColorMasks<565> { static const int highBits = 0xF7DEF7DE; static const int lowBits = 0x08210821; @@ -48,6 +49,7 @@ struct ColorMasks<565> { static const int greenMask = 0x07E0; }; +template<> struct ColorMasks<555> { static const int highBits = 0x04210421; static const int lowBits = 0x04210421; |