aboutsummaryrefslogtreecommitdiff
path: root/scumm/gfx.h
diff options
context:
space:
mode:
authorMax Horn2003-10-13 12:56:53 +0000
committerMax Horn2003-10-13 12:56:53 +0000
commit5acafb15c295b104e280cf3edf5094cebdaa5be7 (patch)
treea5ff1b8006a7bef82c718b7c05a81d9c7dc43a0e /scumm/gfx.h
parent1f16d325342e129d90d4e306df5538c8e4296b18 (diff)
downloadscummvm-rg350-5acafb15c295b104e280cf3edf5094cebdaa5be7.tar.gz
scummvm-rg350-5acafb15c295b104e280cf3edf5094cebdaa5be7.tar.bz2
scummvm-rg350-5acafb15c295b104e280cf3edf5094cebdaa5be7.zip
cleanup; got rid of Gdi::_palette_mod in favor of Gdi::_roomPalette
svn-id: r10778
Diffstat (limited to 'scumm/gfx.h')
-rw-r--r--scumm/gfx.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/scumm/gfx.h b/scumm/gfx.h
index 3e4b588962..5dc17a97f0 100644
--- a/scumm/gfx.h
+++ b/scumm/gfx.h
@@ -110,17 +110,19 @@ struct StripTable {
class Gdi {
friend class ScummEngine; // Mostly for the code in saveload.cpp ...
-public:
ScummEngine *_vm;
+public:
int _numZBuffer;
int _imgBufOffs[8];
int32 _numStrips;
Common::Rect _mask;
byte _C64Colors[4];
+
+ Gdi(ScummEngine *vm);
protected:
- byte _palette_mod;
+ byte *_roomPalette;
byte _decomp_shr, _decomp_mask;
byte _transparentColor;
uint32 _vertStripNextInc;