diff options
author | Filippos Karapetis | 2014-10-28 15:34:09 +0200 |
---|---|---|
committer | Filippos Karapetis | 2014-10-28 15:38:51 +0200 |
commit | b845d41d16f8452122cc8a3b6194da11b3310b5d (patch) | |
tree | ab3743f6885883c6229ac1f1f9a5dae15f9d1edd /video | |
parent | 614de0d761bb8be80bf2b8b500e1810cb67a7535 (diff) | |
download | scummvm-rg350-b845d41d16f8452122cc8a3b6194da11b3310b5d.tar.gz scummvm-rg350-b845d41d16f8452122cc8a3b6194da11b3310b5d.tar.bz2 scummvm-rg350-b845d41d16f8452122cc8a3b6194da11b3310b5d.zip |
VIDEO: Remove trailing whitespace
Diffstat (limited to 'video')
-rw-r--r-- | video/avi_decoder.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/video/avi_decoder.cpp b/video/avi_decoder.cpp index d9761e1c38..a5016632d6 100644 --- a/video/avi_decoder.cpp +++ b/video/avi_decoder.cpp @@ -149,7 +149,7 @@ bool AVIDecoder::parseNextChunk() { skipChunk(size); break; case ID_IDX1: - readOldIndex(size); + readOldIndex(size); break; default: error("Unknown tag \'%s\' found", tag2str(tag)); @@ -528,7 +528,7 @@ bool AVIDecoder::seekIntern(const Audio::Timestamp &time) { // Recreate the audio stream audioTrack->resetStream(); - uint framesNeeded = _header.initialFrames; + uint framesNeeded = _header.initialFrames; if (framesNeeded == 0) framesNeeded = 1; @@ -623,7 +623,7 @@ void AVIDecoder::readOldIndex(uint32 size) { OldIndex firstEntry; firstEntry.id = _fileStream->readUint32BE(); firstEntry.flags = _fileStream->readUint32LE(); - firstEntry.offset = _fileStream->readUint32LE(); + firstEntry.offset = _fileStream->readUint32LE(); firstEntry.size = _fileStream->readUint32LE(); // Check if the offset is already absolute |