[Scummvm-cvs-logs] scummvm master -> 884ee967083fba37acf49f11be1f6885accaba42

eriktorbjorn eriktorbjorn at telia.com
Wed Nov 2 21:54:00 CET 2011


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
884ee96708 SCI: Remove unnecessary semicolon


Commit: 884ee967083fba37acf49f11be1f6885accaba42
    https://github.com/scummvm/scummvm/commit/884ee967083fba37acf49f11be1f6885accaba42
Author: Torbjörn Andersson (eriktorbjorn at users.sourceforge.net)
Date: 2011-11-02T13:53:13-07:00

Commit Message:
SCI: Remove unnecessary semicolon

Changed paths:
    engines/sci/sound/drivers/fmtowns.cpp



diff --git a/engines/sci/sound/drivers/fmtowns.cpp b/engines/sci/sound/drivers/fmtowns.cpp
index 3e0df6e..c152d1f 100644
--- a/engines/sci/sound/drivers/fmtowns.cpp
+++ b/engines/sci/sound/drivers/fmtowns.cpp
@@ -555,7 +555,7 @@ int MidiDriver_FMTowns::getChannelVolume(uint8 midiPart) {
 	static const uint8 volumeTable[] = { 0x00, 0x0D, 0x1B, 0x28, 0x36, 0x43, 0x51, 0x5F, 0x63, 0x67, 0x6B, 0x6F, 0x73, 0x77, 0x7B, 0x7F };
 	int tableIndex = (_parts[midiPart]->_volume * (_masterVolume + 1)) >> 6;
 	assert(tableIndex < 16);
-	return volumeTable[tableIndex];;
+	return volumeTable[tableIndex];
 }
 
 void MidiDriver_FMTowns::addMissingChannels() {






More information about the Scummvm-git-logs mailing list