[Scummvm-cvs-logs] SF.net SVN: scummvm: [31545] scummvm/trunk/engines/agi/sound.cpp

djwillis at users.sourceforge.net djwillis at users.sourceforge.net
Thu Apr 17 19:40:29 CEST 2008


Revision: 31545
          http://scummvm.svn.sourceforge.net/scummvm/?rev=31545&view=rev
Author:   djwillis
Date:     2008-04-17 10:40:28 -0700 (Thu, 17 Apr 2008)

Log Message:
-----------
Fix building with GCC (a few extra ;'s got in there somehow).

Modified Paths:
--------------
    scummvm/trunk/engines/agi/sound.cpp

Modified: scummvm/trunk/engines/agi/sound.cpp
===================================================================
--- scummvm/trunk/engines/agi/sound.cpp	2008-04-17 17:18:43 UTC (rev 31544)
+++ scummvm/trunk/engines/agi/sound.cpp	2008-04-17 17:40:28 UTC (rev 31545)
@@ -754,7 +754,7 @@
 }
 
 // TODO/FIXME: Implement correctly and fully (Take velocity into account etc)
-void IIgsChannelInfo::noteOn(uint8 note, uint8 velocity) {	
+void IIgsChannelInfo::noteOn(uint8 note, uint8 velocity) {
 	this->origNote = note;
 	this->startEnvVol = intToFrac(0);
 	rewind();
@@ -770,13 +770,13 @@
 	this->loop    = (waveInfo->mode == OSC_MODE_LOOP);
 	this->size    = waveInfo->size - waveInfo->addr;
 	this->end     = waveInfo->halt;
-};
+}
 
 // TODO/FIXME: Implement correctly and fully (Take release time and velocity into account etc)
 void IIgsChannelInfo::noteOff(uint8 velocity) {
 	this->loop = false;
 	this->envSeg = ins->relseg;
-};
+}
 
 void IIgsChannelInfo::stop() {
 	this->end = true;


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list