aboutsummaryrefslogtreecommitdiff
path: root/engines/hopkins/graphics.h
diff options
context:
space:
mode:
authorPaul Gilbert2012-09-09 00:12:27 +1000
committerPaul Gilbert2012-09-09 00:12:27 +1000
commit42a09f00b336ce3405ff7558719f07e6f15326aa (patch)
tree75d26955059f04017b6f2fdbb4ab61484cc24315 /engines/hopkins/graphics.h
parentecee539bfde463648d69e0330500ab5ad3cde080 (diff)
downloadscummvm-rg350-42a09f00b336ce3405ff7558719f07e6f15326aa.tar.gz
scummvm-rg350-42a09f00b336ce3405ff7558719f07e6f15326aa.tar.bz2
scummvm-rg350-42a09f00b336ce3405ff7558719f07e6f15326aa.zip
HOPKINS: Implemented screen lock, unlock, and clear screen
Diffstat (limited to 'engines/hopkins/graphics.h')
-rw-r--r--engines/hopkins/graphics.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/engines/hopkins/graphics.h b/engines/hopkins/graphics.h
index de80160dda..18cb44254e 100644
--- a/engines/hopkins/graphics.h
+++ b/engines/hopkins/graphics.h
@@ -26,6 +26,7 @@
#include "common/scummsys.h"
#include "common/endian.h"
#include "common/str.h"
+#include "graphics/surface.h"
namespace Hopkins {
@@ -63,10 +64,15 @@ public:
int nbrligne;
RGB8 cmap[256];
bool Linear;
+ Graphics::Surface *VideoPtr;
public:
GraphicsManager();
+ ~GraphicsManager();
void SET_MODE(int width, int height);
+ void DD_Lock();
+ void DD_Unlock();
+ void Cls_Video();
};
} // End of namespace Hopkins