aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics/font.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sci/graphics/font.h')
-rw-r--r--engines/sci/graphics/font.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/engines/sci/graphics/font.h b/engines/sci/graphics/font.h
index 90f18e426d..b9bee0fa9e 100644
--- a/engines/sci/graphics/font.h
+++ b/engines/sci/graphics/font.h
@@ -32,14 +32,14 @@ namespace Sci {
class GfxFont {
public:
- GfxFont() {};
- virtual ~GfxFont() {};
-
- virtual GuiResourceId getResourceId() { return 0; };
- virtual byte getHeight() { return 0; };
- virtual bool isDoubleByte(uint16 chr) { return false; };
- virtual byte getCharWidth(uint16 chr) { return 0; };
- virtual void draw(uint16 chr, int16 top, int16 left, byte color, bool greyedOutput) {};
+ GfxFont() {}
+ virtual ~GfxFont() {}
+
+ virtual GuiResourceId getResourceId() { return 0; }
+ virtual byte getHeight() { return 0; }
+ virtual bool isDoubleByte(uint16 chr) { return false; }
+ virtual byte getCharWidth(uint16 chr) { return 0; }
+ virtual void draw(uint16 chr, int16 top, int16 left, byte color, bool greyedOutput) {}
};