aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/text.h
diff options
context:
space:
mode:
authorFlorian Kagerer2009-10-06 17:22:40 +0000
committerFlorian Kagerer2009-10-06 17:22:40 +0000
commit45fda46cf31884ca446c23e6c6df50794145cf9e (patch)
tree328bf37e8211368e96d7d45c1351d440544e5006 /engines/kyra/text.h
parent1481c78d1a61937d9339563a521b3b87c14520e9 (diff)
downloadscummvm-rg350-45fda46cf31884ca446c23e6c6df50794145cf9e.tar.gz
scummvm-rg350-45fda46cf31884ca446c23e6c6df50794145cf9e.tar.bz2
scummvm-rg350-45fda46cf31884ca446c23e6c6df50794145cf9e.zip
KYRA/LOL: - get rid of ascii/sjis detection which could cause problems when typing savegame names
- fixed some minor bugs svn-id: r44709
Diffstat (limited to 'engines/kyra/text.h')
-rw-r--r--engines/kyra/text.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/kyra/text.h b/engines/kyra/text.h
index bf346f8e3e..c53f2d1d2f 100644
--- a/engines/kyra/text.h
+++ b/engines/kyra/text.h
@@ -50,12 +50,13 @@ public:
virtual void calcWidestLineBounds(int &x1, int &x2, int w, int cx);
virtual void restoreTalkTextMessageBkgd(int srcPage, int dstPage);
void printTalkTextMessage(const char *text, int x, int y, uint8 color, int srcPage, int dstPage);
- virtual void printText(const char *str, int x, int y, uint8 c0, uint8 c1, uint8 c2, Screen::FontId font=Screen::FID_8_FNT);
+ virtual void printText(const char *str, int x, int y, uint8 c0, uint8 c1, uint8 c2);
void printCharacterText(const char *text, int8 charNum, int charX);
uint16 _talkMessageY;
uint16 _talkMessageH;
bool printed() const { return _talkMessagePrinted; }
+
protected:
Screen *_screen;
KyraEngine_v1 *_vm;