diff options
author | Max Horn | 2010-10-24 13:04:33 +0000 |
---|---|---|
committer | Max Horn | 2010-10-24 13:04:33 +0000 |
commit | c975ed11a14a78bfbf6aa0442058a8f19d470c6c (patch) | |
tree | ddf2b8d072ed7bafd12da32d8d98db4a6f370241 /graphics | |
parent | bf5ae45490a0683692715fcc8a103f0e096e9c21 (diff) | |
download | scummvm-rg350-c975ed11a14a78bfbf6aa0442058a8f19d470c6c.tar.gz scummvm-rg350-c975ed11a14a78bfbf6aa0442058a8f19d470c6c.tar.bz2 scummvm-rg350-c975ed11a14a78bfbf6aa0442058a8f19d470c6c.zip |
ALL: Fix various typos (patch #3093266)
svn-id: r53762
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/video/flic_decoder.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/video/flic_decoder.cpp b/graphics/video/flic_decoder.cpp index 843d3ee093..f55a74f4f3 100644 --- a/graphics/video/flic_decoder.cpp +++ b/graphics/video/flic_decoder.cpp @@ -70,7 +70,7 @@ bool FlicDecoder::load(Common::SeekableReadStream *stream) { } _fileStream->readUint16LE(); // flags - // Note: The normal delay is a 32-bit integer (dword), whereas the overriden delay is a 16-bit integer (word) + // Note: The normal delay is a 32-bit integer (dword), whereas the overridden delay is a 16-bit integer (word) // the frame delay is the FLIC "speed", in milliseconds. _frameRate = Common::Rational(1000, _fileStream->readUint32LE()); @@ -207,7 +207,7 @@ Surface *FlicDecoder::decodeNextFrame() { // this properly. chunkCount = _fileStream->readUint16LE(); - // Note: The overriden delay is a 16-bit integer (word), whereas the normal delay is a 32-bit integer (dword) + // Note: The overridden delay is a 16-bit integer (word), whereas the normal delay is a 32-bit integer (dword) // the frame delay is the FLIC "speed", in milliseconds. uint16 newFrameDelay = _fileStream->readUint16LE(); // "speed", in milliseconds if (newFrameDelay > 0) |