[Scummvm-cvs-logs] CVS: scummvm/backends/midi/mt32 partial.cpp,1.5,1.6 synth.cpp,1.18,1.19

Travis Howell kirben at users.sourceforge.net
Fri Nov 5 21:29:21 CET 2004


Update of /cvsroot/scummvm/scummvm/backends/midi/mt32
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1616/backends/midi/mt32

Modified Files:
	partial.cpp synth.cpp 
Log Message:

Remove stray ;


Index: partial.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/midi/mt32/partial.cpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- partial.cpp	6 Nov 2004 01:41:30 -0000	1.5
+++ partial.cpp	6 Nov 2004 05:18:04 -0000	1.6
@@ -32,7 +32,7 @@
 	ownerPart = -1;
 	poly = NULL;
 	pair = NULL;
-};
+}
 
 int Partial::getOwnerPart() {
 	return ownerPart;
@@ -881,4 +881,4 @@
 		break;
 	}
 	tStat->envsize++;
-};
+}

Index: synth.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/backends/midi/mt32/synth.cpp,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- synth.cpp	6 Nov 2004 01:41:30 -0000	1.18
+++ synth.cpp	6 Nov 2004 05:18:04 -0000	1.19
@@ -680,7 +680,7 @@
 
 	printDebug("**************** Initialisation complete ****************");
 	return true;
-};
+}
 
 void Synth::close(void) {
 	if (!isOpen)
@@ -712,7 +712,7 @@
 	}
 
 	isOpen=false;
-};
+}
 
 void Synth::playMsg(Bit32u msg) {
 	unsigned char code = (unsigned char)((msg & 0xf0) >> 4);
@@ -807,7 +807,7 @@
 	}
 
 	//midiOutShortMsg(m_out, msg);
-};
+}
 
 void Synth::playSysex(Bit8u * sysex,Bit32u len) {
 	if (len < 3) {
@@ -1126,7 +1126,7 @@
 	} else {
 		printDebug("Sysex write to unrecognised address %06x", SYSEXMEMADDR(addr));
 	}
-};
+}
 
 int Synth::dumpSysex(char *filename) {
 	File *file = openFile(filename, File::OpenMode_write);





More information about the Scummvm-git-logs mailing list