aboutsummaryrefslogtreecommitdiff
path: root/graphics/font.h
diff options
context:
space:
mode:
authorMax Horn2007-04-25 19:31:23 +0000
committerMax Horn2007-04-25 19:31:23 +0000
commit00b9bc7b36682365e64d710b4e843659bef373da (patch)
tree27f48e6cb51c37d595a6dd04d9fc1d773f4f766c /graphics/font.h
parent8306e0ebe5bddd5945bdfb436fcfb7148160e029 (diff)
downloadscummvm-rg350-00b9bc7b36682365e64d710b4e843659bef373da.tar.gz
scummvm-rg350-00b9bc7b36682365e64d710b4e843659bef373da.tar.bz2
scummvm-rg350-00b9bc7b36682365e64d710b4e843659bef373da.zip
Removing lots of superfluous semicola (see mail by David Weinehall on scummvm-devel)
svn-id: r26594
Diffstat (limited to 'graphics/font.h')
-rw-r--r--graphics/font.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/font.h b/graphics/font.h
index 4c271903c5..263bedd96d 100644
--- a/graphics/font.h
+++ b/graphics/font.h
@@ -81,7 +81,7 @@ public:
class ScummFont : public Font {
public:
virtual int getFontHeight() const { return 8; }
- virtual int getMaxCharWidth() const { return 8; };
+ virtual int getMaxCharWidth() const { return 8; }
virtual int getCharWidth(byte chr) const;
virtual void drawChar(Surface *dst, byte chr, int x, int y, uint32 color) const;
@@ -126,7 +126,7 @@ public:
~NewFont();
virtual int getFontHeight() const { return desc.height; }
- virtual int getMaxCharWidth() const { return desc.maxwidth; };
+ virtual int getMaxCharWidth() const { return desc.maxwidth; }
virtual int getCharWidth(byte chr) const;
virtual void drawChar(Surface *dst, byte chr, int x, int y, uint32 color) const;