aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/gui/gui_screen.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sci/gui/gui_screen.h')
-rw-r--r--engines/sci/gui/gui_screen.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/engines/sci/gui/gui_screen.h b/engines/sci/gui/gui_screen.h
index c3f2be95b8..0ce0f0f13c 100644
--- a/engines/sci/gui/gui_screen.h
+++ b/engines/sci/gui/gui_screen.h
@@ -63,6 +63,8 @@ public:
void dither();
+ void debugShowMap(int mapNo);
+
uint16 _width;
uint16 _height;
uint _pixels;
@@ -89,6 +91,9 @@ public: // HACK. TODO: make private
// this screen is the one that is actually displayed to the user. It may be 640x480 for japanese SCI1 games
// SCI0 games may be undithered in here. Only read from this buffer for Save/ShowBits usage.
byte *_displayScreen;
+
+ // this is a pointer to the currently active screen (changing it only required for debug purposes)
+ byte *_activeScreen;
};
} // End of namespace Sci