[Scummvm-cvs-logs] scummvm master -> 9cb4deda18f1d7f9e638cf52fef44d303a2cc6e6
dreammaster
dreammaster at scummvm.org
Sat Nov 2 23:29:37 CET 2013
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:
9cb4deda18 TSAGE: Bugfix to get rid of pops at the start of sound effects
Commit: 9cb4deda18f1d7f9e638cf52fef44d303a2cc6e6
https://github.com/scummvm/scummvm/commit/9cb4deda18f1d7f9e638cf52fef44d303a2cc6e6
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2013-11-02T15:28:58-07:00
Commit Message:
TSAGE: Bugfix to get rid of pops at the start of sound effects
Changed paths:
engines/tsage/sound.cpp
diff --git a/engines/tsage/sound.cpp b/engines/tsage/sound.cpp
index 195ba5c..db694e9 100644
--- a/engines/tsage/sound.cpp
+++ b/engines/tsage/sound.cpp
@@ -3103,7 +3103,7 @@ void SoundBlasterDriver::playSound(const byte *channelData, int dataOffset, int
updateVoice(channel);
// Set the new channel data
- _channelData = channelData + dataOffset;
+ _channelData = channelData + dataOffset + 18;
// Make a copy of the buffer
int dataSize = g_vm->_memoryManager.getSize(channelData);
More information about the Scummvm-git-logs
mailing list