aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics/screen.h
diff options
context:
space:
mode:
authorMartin Kiewitz2010-01-07 15:50:58 +0000
committerMartin Kiewitz2010-01-07 15:50:58 +0000
commit9577a45cdd70ca7b9e471434478f9eba8e60374e (patch)
treee6c831122e724c3155926583898676c1830201a7 /engines/sci/graphics/screen.h
parent8e54ce73a50f167e1b1f6efc0d128e1a9482eca2 (diff)
downloadscummvm-rg350-9577a45cdd70ca7b9e471434478f9eba8e60374e.tar.gz
scummvm-rg350-9577a45cdd70ca7b9e471434478f9eba8e60374e.tar.bz2
scummvm-rg350-9577a45cdd70ca7b9e471434478f9eba8e60374e.zip
SCI: fixed save/restorebits within screen class for displayscreen case, fixes kq6 menu bar
svn-id: r47125
Diffstat (limited to 'engines/sci/graphics/screen.h')
-rw-r--r--engines/sci/graphics/screen.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/graphics/screen.h b/engines/sci/graphics/screen.h
index 881025cec0..fcf8b2b002 100644
--- a/engines/sci/graphics/screen.h
+++ b/engines/sci/graphics/screen.h
@@ -106,9 +106,9 @@ private:
byte _colorWhite;
byte _colorDefaultVectorData;
- void bitsRestoreScreen(Common::Rect rect, byte *&memoryPtr, byte *screen);
+ void bitsRestoreScreen(Common::Rect rect, byte *&memoryPtr, byte *screen, uint16 screenWidth);
void bitsRestoreDisplayScreen(Common::Rect rect, byte *&memoryPtr);
- void bitsSaveScreen(Common::Rect rect, byte *screen, byte *&memoryPtr);
+ void bitsSaveScreen(Common::Rect rect, byte *screen, uint16 screenWidth, byte *&memoryPtr);
void bitsSaveDisplayScreen(Common::Rect rect, byte *&memoryPtr);
bool _unditherState;