From c975ed11a14a78bfbf6aa0442058a8f19d470c6c Mon Sep 17 00:00:00 2001 From: Max Horn Date: Sun, 24 Oct 2010 13:04:33 +0000 Subject: ALL: Fix various typos (patch #3093266) svn-id: r53762 --- graphics/video/flic_decoder.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'graphics') 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) -- cgit v1.2.3