aboutsummaryrefslogtreecommitdiff
path: root/engines/agi
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/agi
parent37756c9ffeabcf2dfc91b2dce36dc928d580ce3d (diff)
downloadscummvm-rg350-a78b2d777d98e494b988843bfd9694c58c6c6018.tar.gz
scummvm-rg350-a78b2d777d98e494b988843bfd9694c58c6c6018.tar.bz2
scummvm-rg350-a78b2d777d98e494b988843bfd9694c58c6c6018.zip
JANITORIAL: Remove extra semicolons.
Diffstat (limited to 'engines/agi')
-rw-r--r--engines/agi/sound_2gs.h2
1 files changed, 1 insertions, 1 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