aboutsummaryrefslogtreecommitdiff
path: root/engines/draci/font.h
diff options
context:
space:
mode:
authorDenis Kasak2009-07-15 18:16:54 +0000
committerDenis Kasak2009-07-15 18:16:54 +0000
commita4a3ad123cb407fc9862acb43d3ca2ea27d2da2b (patch)
tree9bac23559ae10ef568ea3b176dece99ea55cce58 /engines/draci/font.h
parent4ef46f4bb07f3736f7a90d70b6907bb03ff04632 (diff)
downloadscummvm-rg350-a4a3ad123cb407fc9862acb43d3ca2ea27d2da2b.tar.gz
scummvm-rg350-a4a3ad123cb407fc9862acb43d3ca2ea27d2da2b.tar.bz2
scummvm-rg350-a4a3ad123cb407fc9862acb43d3ca2ea27d2da2b.zip
Renamed Font::setFont() to loadFont(). Removed DraciEngine::_font and added _smallFont and _bigFont so each font can be handled separately.
svn-id: r42514
Diffstat (limited to 'engines/draci/font.h')
-rw-r--r--engines/draci/font.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/draci/font.h b/engines/draci/font.h
index cdce071e5a..c269124919 100644
--- a/engines/draci/font.h
+++ b/engines/draci/font.h
@@ -53,11 +53,10 @@ class Font {
public:
- Font();
Font(const Common::String &filename);
~Font();
- bool setFont(const Common::String &filename);
+ bool loadFont(const Common::String &filename);
uint8 getFontHeight() const { return _fontHeight; };
uint8 getMaxCharWidth() const { return _maxCharWidth; };
uint8 getCharWidth(byte chr) const;