aboutsummaryrefslogtreecommitdiff
path: root/engines/made/screen.h
diff options
context:
space:
mode:
authorFilippos Karapetis2008-04-24 18:45:11 +0000
committerFilippos Karapetis2008-04-24 18:45:11 +0000
commitb861f38d1060b258d68020f8e3c9b401a1151b08 (patch)
treedcf4137a89b069b9d05df34c37f188074c6ee61e /engines/made/screen.h
parentdd1ae2dd4f89aaaba6767e3eecdd511d9f0086ee (diff)
downloadscummvm-rg350-b861f38d1060b258d68020f8e3c9b401a1151b08.tar.gz
scummvm-rg350-b861f38d1060b258d68020f8e3c9b401a1151b08.tar.bz2
scummvm-rg350-b861f38d1060b258d68020f8e3c9b401a1151b08.zip
Some initial code for font loading
Implemented opcode o1_LOADANIM svn-id: r31698
Diffstat (limited to 'engines/made/screen.h')
-rw-r--r--engines/made/screen.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/made/screen.h b/engines/made/screen.h
index fa58dde88d..543af81bf8 100644
--- a/engines/made/screen.h
+++ b/engines/made/screen.h
@@ -70,6 +70,7 @@ public:
void setClip(uint16 clip) { _clip = clip; }
void setExclude(uint16 exclude) { _exclude = exclude; }
void setGround(uint16 ground) { _ground = ground; }
+ void setFont(uint16 font) { _currentFont = font; }
uint16 updateChannel(uint16 channelIndex);
void deleteChannel(uint16 channelIndex);
@@ -115,6 +116,7 @@ protected:
byte _palette[768], _newPalette[768], _fxPalette[768];
int _paletteColorCount, _oldPaletteColorCount;
bool _paletteInitialized, _needPalette;
+ uint16 _currentFont;
uint16 _clip, _exclude, _ground;
int _visualEffectNum;