diff options
| -rw-r--r-- | video/flic_decoder.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/video/flic_decoder.cpp b/video/flic_decoder.cpp index 5d27aa0a59..994f47cea8 100644 --- a/video/flic_decoder.cpp +++ b/video/flic_decoder.cpp @@ -176,7 +176,7 @@ const Graphics::Surface *FlicDecoder::FlicVideoTrack::decodeNextFrame() {  			uint16 newWidth = _fileStream->readUint16LE();  			uint16 newHeight = _fileStream->readUint16LE(); -			if ((newWidth != 0) && (newHeight != 0)) { +			if ((newWidth != 0) || (newHeight != 0)) {  				if (newWidth == 0)  					newWidth = _surface->w;  				if (newHeight == 0)  | 
