aboutsummaryrefslogtreecommitdiff
path: root/engines/hopkins/graphics.h
diff options
context:
space:
mode:
authorStrangerke2013-04-10 13:03:53 +0200
committerStrangerke2013-04-10 13:03:53 +0200
commit9149f363a6abd493550ae13aa12aa087c668bba3 (patch)
tree2471b4cc6a7b27e2ebb9c3f4b6608910adfa6844 /engines/hopkins/graphics.h
parentbccb460e36120d3555684ef13b23e00a367a8eb7 (diff)
downloadscummvm-rg350-9149f363a6abd493550ae13aa12aa087c668bba3.tar.gz
scummvm-rg350-9149f363a6abd493550ae13aa12aa087c668bba3.tar.bz2
scummvm-rg350-9149f363a6abd493550ae13aa12aa087c668bba3.zip
HOPKINS: Finish lock/unlockScreen() cleanup. Set them as private.
Diffstat (limited to 'engines/hopkins/graphics.h')
-rw-r--r--engines/hopkins/graphics.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/hopkins/graphics.h b/engines/hopkins/graphics.h
index 23b7d4338f..25a8197817 100644
--- a/engines/hopkins/graphics.h
+++ b/engines/hopkins/graphics.h
@@ -83,6 +83,9 @@ private:
void translateSurface(byte *destP, const byte *srcP, int count, int minThreshold, int maxThreshold);
void copy8BitRect(const byte *surface, int xp, int yp, int width, int height, int destX, int destY);
+
+ void lockScreen();
+ void unlockScreen();
public:
byte _colorTable[PALETTE_EXT_BLOCK_SIZE];
byte _palette[PALETTE_EXT_BLOCK_SIZE];
@@ -121,8 +124,6 @@ public:
GraphicsManager(HopkinsEngine *vm);
~GraphicsManager();
- void lockScreen();
- void unlockScreen();
void clearPalette();
void clearScreen();
void clearVesaScreen();