From 70bae60c444d0e6809cac28415d935e2fc7ff681 Mon Sep 17 00:00:00 2001 From: Sven Hesse Date: Wed, 25 Apr 2007 19:52:26 +0000 Subject: Removed some more superfluous semicolons in the gob engine svn-id: r26595 --- engines/gob/draw.h | 2 +- engines/gob/goblin.h | 2 +- engines/gob/init.h | 2 +- engines/gob/inter.h | 8 ++++---- engines/gob/saveload.h | 4 ++-- engines/gob/sound.h | 2 +- engines/gob/video.h | 2 +- 7 files changed, 11 insertions(+), 11 deletions(-) (limited to 'engines') diff --git a/engines/gob/draw.h b/engines/gob/draw.h index 106b8c5be0..05cf4ab866 100644 --- a/engines/gob/draw.h +++ b/engines/gob/draw.h @@ -191,7 +191,7 @@ public: virtual void initScreen(); Draw_Bargon(GobEngine *vm); - virtual ~Draw_Bargon() {}; + virtual ~Draw_Bargon() {} }; // Draw operations diff --git a/engines/gob/goblin.h b/engines/gob/goblin.h index d6e5cdf6d7..a18213fcf7 100644 --- a/engines/gob/goblin.h +++ b/engines/gob/goblin.h @@ -306,7 +306,7 @@ public: int16 index, int16 x, int16 y, int16 state); Goblin_v3(GobEngine *vm); - virtual ~Goblin_v3() {}; + virtual ~Goblin_v3() {} protected: virtual bool isMovement(int8 state); diff --git a/engines/gob/init.h b/engines/gob/init.h index 61a09c1295..6d8d71ae59 100644 --- a/engines/gob/init.h +++ b/engines/gob/init.h @@ -66,7 +66,7 @@ public: virtual void initVideo(); Init_v3(GobEngine *vm); - virtual ~Init_v3() {}; + virtual ~Init_v3() {} }; } // End of namespace Gob diff --git a/engines/gob/inter.h b/engines/gob/inter.h index a684c26af9..90d0f7158e 100644 --- a/engines/gob/inter.h +++ b/engines/gob/inter.h @@ -108,7 +108,7 @@ protected: class Inter_v1 : public Inter { public: Inter_v1(GobEngine *vm); - virtual ~Inter_v1() {}; + virtual ~Inter_v1() {} virtual int16 loadSound(int16 slot); virtual void animPalette(); @@ -303,7 +303,7 @@ protected: class Inter_v2 : public Inter_v1 { public: Inter_v2(GobEngine *vm); - virtual ~Inter_v2() {}; + virtual ~Inter_v2() {} virtual int16 loadSound(int16 search); virtual void animPalette(); @@ -394,7 +394,7 @@ protected: class Inter_Bargon : public Inter_v2 { public: Inter_Bargon(GobEngine *vm); - virtual ~Inter_Bargon() {}; + virtual ~Inter_Bargon() {} protected: typedef void (Inter_Bargon::*OpcodeDrawProcBargon)(); @@ -440,7 +440,7 @@ protected: class Inter_v3 : public Inter_v2 { public: Inter_v3(GobEngine *vm); - virtual ~Inter_v3() {}; + virtual ~Inter_v3() {} protected: typedef void (Inter_v3::*OpcodeDrawProcV3)(); diff --git a/engines/gob/saveload.h b/engines/gob/saveload.h index 905ec6965d..6f867e30ec 100644 --- a/engines/gob/saveload.h +++ b/engines/gob/saveload.h @@ -114,7 +114,7 @@ public: virtual SaveType getSaveType(const char *fileName); SaveLoad_v2(GobEngine *vm, const char *targetName); - virtual ~SaveLoad_v2() {}; + virtual ~SaveLoad_v2() {} protected: virtual uint32 getSaveGameSize(); @@ -135,7 +135,7 @@ public: virtual SaveType getSaveType(const char *fileName); SaveLoad_v3(GobEngine *vm, const char *targetName); - virtual ~SaveLoad_v3() {}; + virtual ~SaveLoad_v3() {} protected: bool _useScreenshots; diff --git a/engines/gob/sound.h b/engines/gob/sound.h index c33c8891a7..8f05fcf2e1 100644 --- a/engines/gob/sound.h +++ b/engines/gob/sound.h @@ -51,7 +51,7 @@ public: byte *getData() { return _dataPtr; } uint32 size() { return _size; } bool empty() { return !_dataPtr; } - bool isId(int16 id) { return _dataPtr && _id == id; }; + bool isId(int16 id) { return _dataPtr && _id == id; } SoundType getType() { return _type; } void set(SoundType type, SoundSource src, byte *data, uint32 dSize); diff --git a/engines/gob/video.h b/engines/gob/video.h index 3a409b9ea9..21c3e7d0f2 100644 --- a/engines/gob/video.h +++ b/engines/gob/video.h @@ -149,7 +149,7 @@ public: SurfaceDesc *destDesc) = 0; Video(class GobEngine *vm); - virtual ~Video() {}; + virtual ~Video() {} protected: class VideoDriver *_videoDriver; -- cgit v1.2.3