[Scummvm-git-logs] scummvm master -> 378428000e8710332becac810af34a6fe9820674
bluegr
noreply at scummvm.org
Tue Jun 18 06:59:31 UTC 2024
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:
378428000e GOB: Handle stereo WAVE samples
Commit: 378428000e8710332becac810af34a6fe9820674
https://github.com/scummvm/scummvm/commit/378428000e8710332becac810af34a6fe9820674
Author: Filippos Karapetis (bluegr at gmail.com)
Date: 2024-06-18T09:58:13+03:00
Commit Message:
GOB: Handle stereo WAVE samples
>From PR #5842.
Used in some Adibou 2 samples, e.g. when entering the garden.
Changed paths:
engines/gob/sound/sounddesc.cpp
diff --git a/engines/gob/sound/sounddesc.cpp b/engines/gob/sound/sounddesc.cpp
index 5761a08210c..0dce48a259f 100644
--- a/engines/gob/sound/sounddesc.cpp
+++ b/engines/gob/sound/sounddesc.cpp
@@ -172,8 +172,7 @@ bool SoundDesc::loadWAV(byte *data, uint32 dSize) {
}
if (wavFlags & Audio::FLAG_STEREO) {
- warning("TODO: SoundDesc::loadWAV() - stereo");
- return false;
+ _mixerFlags |= Audio::FLAG_STEREO;
}
_data = data;
More information about the Scummvm-git-logs
mailing list