diff options
author | Willem Jan Palenstijn | 2012-02-11 11:36:12 +0100 |
---|---|---|
committer | Willem Jan Palenstijn | 2012-02-11 11:36:26 +0100 |
commit | 342fd8cc28b3ce26c2c593f5641c90642f54571c (patch) | |
tree | 0233a228002d68989dc71806415adce07ffe0230 /video/qt_decoder.cpp | |
parent | 928fd72a359d00f0cae45b9ca49c4b8f24e08d90 (diff) | |
download | scummvm-rg350-342fd8cc28b3ce26c2c593f5641c90642f54571c.tar.gz scummvm-rg350-342fd8cc28b3ce26c2c593f5641c90642f54571c.tar.bz2 scummvm-rg350-342fd8cc28b3ce26c2c593f5641c90642f54571c.zip |
VIDEO: Remove unused variable
Diffstat (limited to 'video/qt_decoder.cpp')
-rw-r--r-- | video/qt_decoder.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/video/qt_decoder.cpp b/video/qt_decoder.cpp index 4a57ac405d..959e3c4fc7 100644 --- a/video/qt_decoder.cpp +++ b/video/qt_decoder.cpp @@ -113,7 +113,6 @@ void QuickTimeDecoder::pauseVideoIntern(bool pause) { QuickTimeDecoder::VideoTrackHandler *QuickTimeDecoder::findNextVideoTrack() const { VideoTrackHandler *bestTrack = 0; - int32 num; uint32 bestTime = 0xffffffff; for (uint32 i = 0; i < _handlers.size(); i++) { @@ -124,7 +123,6 @@ QuickTimeDecoder::VideoTrackHandler *QuickTimeDecoder::findNextVideoTrack() cons if (time < bestTime) { bestTime = time; bestTrack = track; - num = i; } } } |