diff options
author | Travis Howell | 2004-11-06 05:18:04 +0000 |
---|---|---|
committer | Travis Howell | 2004-11-06 05:18:04 +0000 |
commit | b36be2d8bc3b7533ce41b91b3a16e2880be28518 (patch) | |
tree | ccf897cf76a98ad74e0321f3d35877e7f998e5f0 /backends/midi | |
parent | dee673d96e7c18b53745553f18acd1a6b5ac6282 (diff) | |
download | scummvm-rg350-b36be2d8bc3b7533ce41b91b3a16e2880be28518.tar.gz scummvm-rg350-b36be2d8bc3b7533ce41b91b3a16e2880be28518.tar.bz2 scummvm-rg350-b36be2d8bc3b7533ce41b91b3a16e2880be28518.zip |
Remove stray ;
svn-id: r15717
Diffstat (limited to 'backends/midi')
-rw-r--r-- | backends/midi/mt32/partial.cpp | 4 | ||||
-rw-r--r-- | backends/midi/mt32/synth.cpp | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/backends/midi/mt32/partial.cpp b/backends/midi/mt32/partial.cpp index 5a849ae4ad..55daf7efbf 100644 --- a/backends/midi/mt32/partial.cpp +++ b/backends/midi/mt32/partial.cpp @@ -32,7 +32,7 @@ Partial::Partial(Synth *useSynth) { ownerPart = -1; poly = NULL; pair = NULL; -}; +} int Partial::getOwnerPart() { return ownerPart; @@ -881,4 +881,4 @@ void Partial::startDecay(int envnum, Bit32s startval) { break; } tStat->envsize++; -}; +} diff --git a/backends/midi/mt32/synth.cpp b/backends/midi/mt32/synth.cpp index 26448ac3d1..bd84ad076e 100644 --- a/backends/midi/mt32/synth.cpp +++ b/backends/midi/mt32/synth.cpp @@ -680,7 +680,7 @@ bool Synth::open(SynthProperties &useProp) { printDebug("**************** Initialisation complete ****************"); return true; -}; +} void Synth::close(void) { if (!isOpen) @@ -712,7 +712,7 @@ void Synth::close(void) { } isOpen=false; -}; +} void Synth::playMsg(Bit32u msg) { unsigned char code = (unsigned char)((msg & 0xf0) >> 4); @@ -807,7 +807,7 @@ void Synth::playMsgOnPart(unsigned char part, unsigned char code, unsigned char } //midiOutShortMsg(m_out, msg); -}; +} void Synth::playSysex(Bit8u * sysex,Bit32u len) { if (len < 3) { @@ -1126,7 +1126,7 @@ void Synth::playSysexWithoutHeader(unsigned char device, Bit8u *sysex, Bit32u le } else { printDebug("Sysex write to unrecognised address %06x", SYSEXMEMADDR(addr)); } -}; +} int Synth::dumpSysex(char *filename) { File *file = openFile(filename, File::OpenMode_write); |