diff options
author | Max Horn | 2002-12-26 00:21:19 +0000 |
---|---|---|
committer | Max Horn | 2002-12-26 00:21:19 +0000 |
commit | 48c66ba21007dbbd086301d7555224ba28687778 (patch) | |
tree | ac49a16d3589b50a2b90eab59c01fd216094616a /scumm/scumm.h | |
parent | 91fc86eede6e9e1ffc5f3f01e47b17bbbc2fb98d (diff) | |
download | scummvm-rg350-48c66ba21007dbbd086301d7555224ba28687778.tar.gz scummvm-rg350-48c66ba21007dbbd086301d7555224ba28687778.tar.bz2 scummvm-rg350-48c66ba21007dbbd086301d7555224ba28687778.zip |
fixed save/load; more restructuring of the charset rendering code
svn-id: r6154
Diffstat (limited to 'scumm/scumm.h')
-rw-r--r-- | scumm/scumm.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/scumm/scumm.h b/scumm/scumm.h index 04440e913a..25a3ccf046 100644 --- a/scumm/scumm.h +++ b/scumm/scumm.h @@ -858,9 +858,14 @@ public: /* String class */ CharsetRenderer *_charset; byte _charsetColor; - bool _noSubtitles; // Skip all subtitles? + byte _charsetColorMap[16]; byte _charsetData[15][16]; + int _charsetBufPos; + byte _charsetBuffer[512]; + + bool _noSubtitles; // Skip all subtitles? + void initCharset(int charset); void restoreCharsetBg(); int hasCharsetMask(int x, int y, int x2, int y2); |