[Scummvm-cvs-logs] scummvm master -> a69b3231a9b916ca451fa58033c4a1e9def51e6b
clone2727
clone2727 at gmail.com
Tue Apr 16 17:03:04 CEST 2013
This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
43d264cb2f VIDEO: Fix uninitialized track pointers
a69b3231a9 PEGASUS: Remove unused variable
Commit: 43d264cb2f9264218231ba3753c8d81f3484b24f
https://github.com/scummvm/scummvm/commit/43d264cb2f9264218231ba3753c8d81f3484b24f
Author: Matthew Hoops (clone2727 at gmail.com)
Date: 2013-04-16T07:40:16-07:00
Commit Message:
VIDEO: Fix uninitialized track pointers
Changed paths:
video/psx_decoder.cpp
diff --git a/video/psx_decoder.cpp b/video/psx_decoder.cpp
index 57c8972..fd45005 100644
--- a/video/psx_decoder.cpp
+++ b/video/psx_decoder.cpp
@@ -151,6 +151,8 @@ static const uint32 s_huffmanACSymbols[AC_CODE_COUNT] = {
PSXStreamDecoder::PSXStreamDecoder(CDSpeed speed, uint32 frameCount) : _speed(speed), _frameCount(frameCount) {
_stream = 0;
+ _videoTrack = 0;
+ _audioTrack = 0;
}
PSXStreamDecoder::~PSXStreamDecoder() {
Commit: a69b3231a9b916ca451fa58033c4a1e9def51e6b
https://github.com/scummvm/scummvm/commit/a69b3231a9b916ca451fa58033c4a1e9def51e6b
Author: Matthew Hoops (clone2727 at gmail.com)
Date: 2013-04-16T08:01:02-07:00
Commit Message:
PEGASUS: Remove unused variable
Changed paths:
engines/pegasus/items/inventorypicture.h
diff --git a/engines/pegasus/items/inventorypicture.h b/engines/pegasus/items/inventorypicture.h
index 88a4a4b..9eba25b 100644
--- a/engines/pegasus/items/inventorypicture.h
+++ b/engines/pegasus/items/inventorypicture.h
@@ -106,7 +106,6 @@ protected:
virtual TimeValue getItemPanelTime(Item *);
void loopCurrentItem();
- InputHandler *_previousHandler;
bool _isLooping;
};
More information about the Scummvm-git-logs
mailing list