aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm
diff options
context:
space:
mode:
authorMax Horn2006-10-15 02:15:38 +0000
committerMax Horn2006-10-15 02:15:38 +0000
commitb5cbbd705a27bba26dd2a312c37578a63233ff27 (patch)
tree3a66df2d3a4ca5a755b1ebb2bd2baaf602bd27ab /engines/scumm
parent27b73e4960876c8d5efaee27e0365beeba544b7f (diff)
downloadscummvm-rg350-b5cbbd705a27bba26dd2a312c37578a63233ff27.tar.gz
scummvm-rg350-b5cbbd705a27bba26dd2a312c37578a63233ff27.tar.bz2
scummvm-rg350-b5cbbd705a27bba26dd2a312c37578a63233ff27.zip
Added some more const keywords
svn-id: r24330
Diffstat (limited to 'engines/scumm')
-rw-r--r--engines/scumm/charset.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/scumm/charset.h b/engines/scumm/charset.h
index 25fc1c7788..54091eeee7 100644
--- a/engines/scumm/charset.h
+++ b/engines/scumm/charset.h
@@ -99,7 +99,7 @@ public:
class CharsetRendererCommon : public CharsetRenderer {
protected:
- byte *_fontPtr;
+ const byte *_fontPtr;
int _bitDepth;
int _fontHeight;
int _numChars;
@@ -155,7 +155,7 @@ public:
class CharsetRendererV3 : public CharsetRendererCommon {
protected:
- byte *_widthTable;
+ const byte *_widthTable;
public:
CharsetRendererV3(ScummEngine *vm) : CharsetRendererCommon(vm) {}