aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorChristoph Mallon2011-11-26 13:33:42 +0100
committerWillem Jan Palenstijn2011-11-27 12:54:22 +0100
commita78b2d777d98e494b988843bfd9694c58c6c6018 (patch)
tree2c6945a684eb2a4f6ea1b24f09bd2641a4b1c288 /engines
parent37756c9ffeabcf2dfc91b2dce36dc928d580ce3d (diff)
downloadscummvm-rg350-a78b2d777d98e494b988843bfd9694c58c6c6018.tar.gz
scummvm-rg350-a78b2d777d98e494b988843bfd9694c58c6c6018.tar.bz2
scummvm-rg350-a78b2d777d98e494b988843bfd9694c58c6c6018.zip
JANITORIAL: Remove extra semicolons.
Diffstat (limited to 'engines')
-rw-r--r--engines/agi/sound_2gs.h2
-rw-r--r--engines/sword25/gfx/renderobject.h2
-rw-r--r--engines/toon/character.h2
-rw-r--r--engines/tsage/core.h2
-rw-r--r--engines/tsage/sound.h2
5 files changed, 5 insertions, 5 deletions
diff --git a/engines/agi/sound_2gs.h b/engines/agi/sound_2gs.h
index 89ffc3fe11..404f4a47a1 100644
--- a/engines/agi/sound_2gs.h
+++ b/engines/agi/sound_2gs.h
@@ -247,7 +247,7 @@ private:
void midiNoteOff(int channel, int note, int velocity);
void midiNoteOn(int channel, int note, int velocity);
double midiKeyToFreq(int key, double finetune);
- IIgsInstrumentHeader* getInstrument(uint8 program) { return &_instruments[_progToInst->map(program)]; };
+ IIgsInstrumentHeader* getInstrument(uint8 program) { return &_instruments[_progToInst->map(program)]; }
IIgsGenerator* allocateGenerator() { IIgsGenerator* g = &_generators[_nextGen++]; _nextGen %= 16; return g; }
bool _disableMidi; ///< Disable MIDI if loading instruments fail
diff --git a/engines/sword25/gfx/renderobject.h b/engines/sword25/gfx/renderobject.h
index 0b54ccc24b..f963ccaeb3 100644
--- a/engines/sword25/gfx/renderobject.h
+++ b/engines/sword25/gfx/renderobject.h
@@ -402,7 +402,7 @@ protected:
@return Gibt false zurück, falls das Rendern fehlgeschlagen ist.
@remark
*/
- virtual bool doRender() = 0; // { return true; };
+ virtual bool doRender() = 0; // { return true; }
// RenderObject-Baum Variablen
// ---------------------------
diff --git a/engines/toon/character.h b/engines/toon/character.h
index de58a41e43..d06a6c060c 100644
--- a/engines/toon/character.h
+++ b/engines/toon/character.h
@@ -96,7 +96,7 @@ public:
virtual void updateTimers(int32 relativeAdd);
virtual void setTalking(bool talking) { _isTalking = talking; }
virtual bool isTalking() { return _isTalking; }
- virtual void resetScale() { };
+ virtual void resetScale() {}
virtual void plotPath(Graphics::Surface& surface);
int32 getFacingFromDirection(int32 dx, int32 dy);
diff --git a/engines/tsage/core.h b/engines/tsage/core.h
index 8a2e733549..d55352319f 100644
--- a/engines/tsage/core.h
+++ b/engines/tsage/core.h
@@ -129,7 +129,7 @@ public:
virtual void dispatch();
virtual void setAction(Action *action) { setAction(action, NULL); }
virtual void setAction(Action *action, EventHandler *endHandler, ...);
- virtual void destroy() {};
+ virtual void destroy() {}
};
class Action : public EventHandler {
diff --git a/engines/tsage/sound.h b/engines/tsage/sound.h
index c7b07e2cc3..77d1f3d3ac 100644
--- a/engines/tsage/sound.h
+++ b/engines/tsage/sound.h
@@ -87,7 +87,7 @@ public:
int _driverResID;
public:
SoundDriver();
- virtual ~SoundDriver() {};
+ virtual ~SoundDriver() {}
const Common::String &getShortDriverDescription() { return _shortDescription; }
const Common::String &getLongDriverDescription() { return _longDescription; }