diff options
author | Filippos Karapetis | 2008-06-08 10:56:44 +0000 |
---|---|---|
committer | Filippos Karapetis | 2008-06-08 10:56:44 +0000 |
commit | af7472642089e52e16c7e39428b44c39e997841f (patch) | |
tree | 1bf0147fed71ae7124652d341c9cc479a7c73588 /engines | |
parent | 99b7c8eb435c628af398f7305a35d879280a0de2 (diff) | |
download | scummvm-rg350-af7472642089e52e16c7e39428b44c39e997841f.tar.gz scummvm-rg350-af7472642089e52e16c7e39428b44c39e997841f.tar.bz2 scummvm-rg350-af7472642089e52e16c7e39428b44c39e997841f.zip |
Grouped all the different draw buffers/pointers together
svn-id: r32612
Diffstat (limited to 'engines')
-rw-r--r-- | engines/drascula/drascula.h | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/engines/drascula/drascula.h b/engines/drascula/drascula.h index d3b0405ada..4501d73134 100644 --- a/engines/drascula/drascula.h +++ b/engines/drascula/drascula.h @@ -275,8 +275,8 @@ public: DacPalette256 brightPalette; DacPalette256 darkPalette; + // Graphics buffers/pointers byte *VGA; - byte *drawSurface1; byte *backSurface; byte *drawSurface3; @@ -287,9 +287,14 @@ public: byte *frontSurface; byte *textSurface; byte *pendulumSurface; + byte *pcxBuffer; + byte *AuxBuffOrg; + byte *AuxBuffDes; + byte *pointer; + byte *MiVideoSSN; + byte *mSession; byte cPal[768]; - byte *pcxBuffer; Common::ArjFile _arj; @@ -468,15 +473,9 @@ public: byte *TryInMem(); int playFrameSSN(); - byte *AuxBuffOrg; - byte *AuxBuffDes; - - byte *pointer; int UsingMem; byte CHUNK; byte CMP, dacSSN[768]; - byte *MiVideoSSN; - byte *mSession; int FrameSSN; int globalSpeed; uint32 LastFrame; |