aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorSven Hesse2007-04-25 19:52:26 +0000
committerSven Hesse2007-04-25 19:52:26 +0000
commit70bae60c444d0e6809cac28415d935e2fc7ff681 (patch)
tree887d3c599374ffcc176804c531aa71f9aaca1bc8 /engines
parent00b9bc7b36682365e64d710b4e843659bef373da (diff)
downloadscummvm-rg350-70bae60c444d0e6809cac28415d935e2fc7ff681.tar.gz
scummvm-rg350-70bae60c444d0e6809cac28415d935e2fc7ff681.tar.bz2
scummvm-rg350-70bae60c444d0e6809cac28415d935e2fc7ff681.zip
Removed some more superfluous semicolons in the gob engine
svn-id: r26595
Diffstat (limited to 'engines')
-rw-r--r--engines/gob/draw.h2
-rw-r--r--engines/gob/goblin.h2
-rw-r--r--engines/gob/init.h2
-rw-r--r--engines/gob/inter.h8
-rw-r--r--engines/gob/saveload.h4
-rw-r--r--engines/gob/sound.h2
-rw-r--r--engines/gob/video.h2
7 files changed, 11 insertions, 11 deletions
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;