aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/scumm.h
diff options
context:
space:
mode:
authorEugene Sandulenko2007-07-10 00:39:12 +0000
committerEugene Sandulenko2007-07-10 00:39:12 +0000
commit1db83059b0a33f910c1d2f78630dccde2dd167b9 (patch)
tree174f1a8e6527c70bd968cd8165b04ae491375248 /engines/scumm/scumm.h
parentaaa987201ee15fcb48ad349911e9e41655a001dc (diff)
downloadscummvm-rg350-1db83059b0a33f910c1d2f78630dccde2dd167b9.tar.gz
scummvm-rg350-1db83059b0a33f910c1d2f78630dccde2dd167b9.tar.bz2
scummvm-rg350-1db83059b0a33f910c1d2f78630dccde2dd167b9.zip
Preliminary (and buggy) Kanji support.
svn-id: r27998
Diffstat (limited to 'engines/scumm/scumm.h')
-rw-r--r--engines/scumm/scumm.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/scumm/scumm.h b/engines/scumm/scumm.h
index 438797a018..18c2275029 100644
--- a/engines/scumm/scumm.h
+++ b/engines/scumm/scumm.h
@@ -1026,10 +1026,12 @@ protected:
// Screen rendering
byte *_compositeBuf;
byte *_herculesBuf;
+ byte *_fmtownsBuf;
virtual void drawDirtyScreenParts();
void updateDirtyScreen(VirtScreenNumber slot);
void drawStripToScreen(VirtScreen *vs, int x, int w, int t, int b);
void ditherCGA(byte *dst, int dstPitch, int x, int y, int width, int height) const;
+ void scale2x(byte *dst, int dstPitch, const byte *src, int srcPitch, int w, int h);
public:
VirtScreen *findVirtScreen(int y);
@@ -1151,6 +1153,7 @@ public:
* drawStripToScreen() composits it over the game graphics.
*/
Graphics::Surface _textSurface;
+ int _textSurfaceMultiplier;
protected:
byte _charsetColor;