diff options
author | Robin Watts | 2010-03-09 01:20:23 +0000 |
---|---|---|
committer | Robin Watts | 2010-03-09 01:20:23 +0000 |
commit | 99e032e9545c6639f9d41a90d4e836fa570cc27b (patch) | |
tree | 8c8f12ec70107dc263fee3402ed6c6bc7de7c9e7 | |
parent | 3eab993d03b9d27524d9b227c15276d7997f7419 (diff) | |
download | scummvm-rg350-99e032e9545c6639f9d41a90d4e836fa570cc27b.tar.gz scummvm-rg350-99e032e9545c6639f9d41a90d4e836fa570cc27b.tar.bz2 scummvm-rg350-99e032e9545c6639f9d41a90d4e836fa570cc27b.zip |
Fix missing definition of gBitFormat.
svn-id: r48213
-rw-r--r-- | graphics/scaler/aspect.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/graphics/scaler/aspect.cpp b/graphics/scaler/aspect.cpp index 45efb094f0..b7d1933833 100644 --- a/graphics/scaler/aspect.cpp +++ b/graphics/scaler/aspect.cpp @@ -278,6 +278,7 @@ void Normal2xAspect(const uint8 *srcPtr, uint32 dstPitch, int width, int height) { + extern int gBitFormat; if (gBitFormat == 565) { Normal2xAspectMask(srcPtr, srcPitch, |