aboutsummaryrefslogtreecommitdiff
path: root/engines/draci/font.h
diff options
context:
space:
mode:
authorDenis Kasak2009-06-14 16:33:20 +0000
committerDenis Kasak2009-06-14 16:33:20 +0000
commit149b45f7a59c5319c912d13d8259b63b5fbb2a21 (patch)
tree939139a56605161040e0920f72003299d7b871d1 /engines/draci/font.h
parent15a35e359d6a5a973a434b03626bc0e1e5001a0f (diff)
downloadscummvm-rg350-149b45f7a59c5319c912d13d8259b63b5fbb2a21.tar.gz
scummvm-rg350-149b45f7a59c5319c912d13d8259b63b5fbb2a21.tar.bz2
scummvm-rg350-149b45f7a59c5319c912d13d8259b63b5fbb2a21.zip
Renamed DraciFont class to Font to be more consistent with the rest of the classes and other engines.
svn-id: r41523
Diffstat (limited to 'engines/draci/font.h')
-rw-r--r--engines/draci/font.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/draci/font.h b/engines/draci/font.h
index b28b1ec338..ddc6eaec7e 100644
--- a/engines/draci/font.h
+++ b/engines/draci/font.h
@@ -34,11 +34,11 @@ const Common::String kFontBig("Big.fon");
* Represents the game's fonts. See docs for setFont() for font format details.
*/
-class DraciFont {
+class Font {
public:
- DraciFont(const Common::String &filename);
- ~DraciFont();
+ Font(const Common::String &filename);
+ ~Font();
bool setFont(const Common::String &filename);
uint8 getFontHeight() const { return _fontHeight; };
uint8 getMaxCharWidth() const { return _maxCharWidth; };