[Scummvm-git-logs] scummvm master -> 0fb60cb3c0613e9c713ddc4e6500d57e6f44cfb6
mduggan
mgithub at guarana.org
Wed May 19 08:27:37 UTC 2021
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:
0fb60cb3c0 AUDIO: Fix typo (missing comma)
Commit: 0fb60cb3c0613e9c713ddc4e6500d57e6f44cfb6
https://github.com/scummvm/scummvm/commit/0fb60cb3c0613e9c713ddc4e6500d57e6f44cfb6
Author: Matthew Duggan (mgithub at guarana.org)
Date: 2021-05-19T17:27:29+09:00
Commit Message:
AUDIO: Fix typo (missing comma)
Changed paths:
audio/mods/mod_xm_s3m.cpp
diff --git a/audio/mods/mod_xm_s3m.cpp b/audio/mods/mod_xm_s3m.cpp
index 5588018e4b..e19983744d 100644
--- a/audio/mods/mod_xm_s3m.cpp
+++ b/audio/mods/mod_xm_s3m.cpp
@@ -182,7 +182,7 @@ const short ModXmS3mStream::sinetable[] = {
ModXmS3mStream::ModXmS3mStream(Common::SeekableReadStream *stream, int initialPos, int rate, int interpolation) :
_rampBuf(nullptr), _playCount(nullptr), _channels(nullptr),
_mixBuffer(nullptr), _sampleRate(rate), _interpolation(interpolation),
- _seqPos(initialPos) _mixBufferSamples(0), _finished(false) {
+ _seqPos(initialPos), _mixBufferSamples(0), _finished(false) {
if (!_module.load(*stream)) {
warning("It's not a valid Mod/S3m/Xm sound file");
_loadSuccess = false;
More information about the Scummvm-git-logs
mailing list