aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics/picture.h
diff options
context:
space:
mode:
authorMartin Kiewitz2010-01-09 14:09:45 +0000
committerMartin Kiewitz2010-01-09 14:09:45 +0000
commita815d0e12a42b8880b5f629d6053f96139a46acc (patch)
tree070c14af7b0fac7732e24258b4d10e625dfc881f /engines/sci/graphics/picture.h
parent5d4ff2930bee11dfef21c66009245d144db5d205 (diff)
downloadscummvm-rg350-a815d0e12a42b8880b5f629d6053f96139a46acc.tar.gz
scummvm-rg350-a815d0e12a42b8880b5f629d6053f96139a46acc.tar.bz2
scummvm-rg350-a815d0e12a42b8880b5f629d6053f96139a46acc.zip
SCI: added new debug command "picture_visualize", which enables visualization of the drawing process of EGA pictures
svn-id: r47201
Diffstat (limited to 'engines/sci/graphics/picture.h')
-rw-r--r--engines/sci/graphics/picture.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/engines/sci/graphics/picture.h b/engines/sci/graphics/picture.h
index fcab244a36..04a5fb8fd6 100644
--- a/engines/sci/graphics/picture.h
+++ b/engines/sci/graphics/picture.h
@@ -34,7 +34,7 @@ namespace Sci {
class SciGuiPicture {
public:
- SciGuiPicture(ResourceManager *resMan, Gfx *gfx, Screen *screen, SciPalette *palette, GuiResourceId resourceId);
+ SciGuiPicture(ResourceManager *resMan, Gfx *gfx, Screen *screen, SciPalette *palette, GuiResourceId resourceId, bool EGAdrawingVisualize = false);
~SciGuiPicture();
GuiResourceId getResourceId();
@@ -75,6 +75,9 @@ private:
bool _addToFlag;
int16 _EGApaletteNo;
byte _priority;
+
+ // If true, we will show the whole EGA drawing process...
+ bool _EGAdrawingVisualize;
};
} // End of namespace Sci