[Scummvm-git-logs] scummvm master -> 8dfe2ccc96183939d72c0916d13b33c924999019
digitall
noreply at scummvm.org
Sat Oct 8 05:40:58 UTC 2022
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:
8dfe2ccc96 SCUMM: Fix GCC Pedantic Compiler Warning Due To Extra Semicolon
Commit: 8dfe2ccc96183939d72c0916d13b33c924999019
https://github.com/scummvm/scummvm/commit/8dfe2ccc96183939d72c0916d13b33c924999019
Author: D G Turner (digitall at scummvm.org)
Date: 2022-10-08T06:40:23+01:00
Commit Message:
SCUMM: Fix GCC Pedantic Compiler Warning Due To Extra Semicolon
Changed paths:
engines/scumm/imuse/drivers/mac_m68k.cpp
diff --git a/engines/scumm/imuse/drivers/mac_m68k.cpp b/engines/scumm/imuse/drivers/mac_m68k.cpp
index 9e5cc6df1c1..3cfbd059061 100644
--- a/engines/scumm/imuse/drivers/mac_m68k.cpp
+++ b/engines/scumm/imuse/drivers/mac_m68k.cpp
@@ -431,7 +431,7 @@ void IMuseDriver_MacM68k::MidiChannel_MacM68k::detune(uint8 value) {
for (VoiceChannel *i = _voice; i; i = i->next) {
_owner->setPitch(&i->out, ((i->note + _transpose) << 7) + ((_pitchBend * _pitchBendFactor) >> 6) + _detune);
}
-};
+}
void IMuseDriver_MacM68k::MidiChannel_MacM68k::priority(byte value) {
_priority = value;
More information about the Scummvm-git-logs
mailing list