diff options
| author | Max Horn | 2010-03-22 20:28:08 +0000 | 
|---|---|---|
| committer | Max Horn | 2010-03-22 20:28:08 +0000 | 
| commit | 92c896d88317b64a2cc99fc3617f3405481e90a2 (patch) | |
| tree | 78133d8095719a5b5564ea14a6f8230ab738106f /engines/draci/sprite.h | |
| parent | dd7891cdadc5c2e4f9d1c10d229c4c0d7235f8b1 (diff) | |
| download | scummvm-rg350-92c896d88317b64a2cc99fc3617f3405481e90a2.tar.gz scummvm-rg350-92c896d88317b64a2cc99fc3617f3405481e90a2.tar.bz2 scummvm-rg350-92c896d88317b64a2cc99fc3617f3405481e90a2.zip | |
Patch #2973290: Semicolon cleanup
svn-id: r48359
Diffstat (limited to 'engines/draci/sprite.h')
| -rw-r--r-- | engines/draci/sprite.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/engines/draci/sprite.h b/engines/draci/sprite.h index b889603e63..ddc56ecd80 100644 --- a/engines/draci/sprite.h +++ b/engines/draci/sprite.h @@ -51,7 +51,7 @@ public:  	virtual void draw(Surface *surface, bool markDirty, int relX, int relY) const = 0;  	virtual void drawReScaled(Surface *surface, bool markDirty, const Displacement &displacement) const = 0; -	virtual ~Drawable() {}; +	virtual ~Drawable() {}  	uint getWidth() const { return _width; }  	uint getHeight() const { return _height; } @@ -141,7 +141,7 @@ class Text : public Drawable {  public:  	Text(const Common::String &str, const Font *font, byte fontColour,  	    int x, int y, uint spacing); -	~Text() {}; +	~Text() {}  	void setText(const Common::String &str);  	void setColour(byte fontColour) { _colour = fontColour; } | 
