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/groovie | |
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/groovie')
-rw-r--r-- | engines/groovie/player.h | 4 | ||||
-rw-r--r-- | engines/groovie/resource.h | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/engines/groovie/player.h b/engines/groovie/player.h index d54601bc52..bb156d7929 100644 --- a/engines/groovie/player.h +++ b/engines/groovie/player.h @@ -40,8 +40,8 @@ public: bool load(Common::SeekableReadStream *file, uint16 flags); bool playFrame(); - virtual void resetFlags() {}; - virtual void setOrigin(int16 x, int16 y) {}; + virtual void resetFlags() {} + virtual void setOrigin(int16 x, int16 y) {} protected: // To be implemented by subclasses diff --git a/engines/groovie/resource.h b/engines/groovie/resource.h index 0cbcd43a89..405de538a9 100644 --- a/engines/groovie/resource.h +++ b/engines/groovie/resource.h @@ -36,7 +36,7 @@ struct ResInfo { class ResMan { public: - virtual ~ResMan() {}; + virtual ~ResMan() {} Common::SeekableReadStream *open(uint32 fileRef); virtual uint16 getRef(Common::String name, Common::String scriptname = "") = 0; @@ -51,7 +51,7 @@ protected: class ResMan_t7g : public ResMan { public: ResMan_t7g(); - ~ResMan_t7g() {}; + ~ResMan_t7g() {} uint16 getRef(Common::String name, Common::String scriptname); bool getResInfo(uint32 fileRef, ResInfo &resInfo); @@ -60,7 +60,7 @@ public: class ResMan_v2 : public ResMan { public: ResMan_v2(); - ~ResMan_v2() {}; + ~ResMan_v2() {} uint16 getRef(Common::String name, Common::String scriptname); bool getResInfo(uint32 fileRef, ResInfo &resInfo); |