[Scummvm-git-logs] scummvm master -> e449629385a9eeed41e00f789333d86595e6506f
sdelamarre
noreply at scummvm.org
Fri Apr 21 22:55:23 UTC 2023
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:
e449629385 VIDEO: fix uninitialized _isDouble property in Coktel decoder
Commit: e449629385a9eeed41e00f789333d86595e6506f
https://github.com/scummvm/scummvm/commit/e449629385a9eeed41e00f789333d86595e6506f
Author: Simon Delamarre (simon.delamarre14 at gmail.com)
Date: 2023-04-22T00:54:52+02:00
Commit Message:
VIDEO: fix uninitialized _isDouble property in Coktel decoder
Changed paths:
video/coktel_decoder.cpp
diff --git a/video/coktel_decoder.cpp b/video/coktel_decoder.cpp
index c17cb5ae3ee..74779fcc7ba 100644
--- a/video/coktel_decoder.cpp
+++ b/video/coktel_decoder.cpp
@@ -50,9 +50,9 @@ CoktelDecoder::State::State() : flags(0), speechId(0) {
CoktelDecoder::CoktelDecoder(Audio::Mixer *mixer, Audio::Mixer::SoundType soundType) :
_mixer(mixer), _soundType(soundType), _width(0), _height(0), _x(0), _y(0),
_defaultX(0), _defaultY(0), _features(0), _frameCount(0), _paletteDirty(false),
- _ownSurface(true), _frameRate(12), _hasSound(false), _soundEnabled(false),
- _soundStage(kSoundNone), _audioStream(0), _startTime(0), _pauseStartTime(0),
- _isPaused(false) {
+ _isDouble(false), _ownSurface(true), _frameRate(12), _hasSound(false),
+ _soundEnabled(false), _soundStage(kSoundNone), _audioStream(0), _startTime(0),
+ _pauseStartTime(0), _isPaused(false) {
assert(_mixer);
More information about the Scummvm-git-logs
mailing list