diff options
Diffstat (limited to 'engines/zvision/video.cpp')
-rw-r--r-- | engines/zvision/video.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/zvision/video.cpp b/engines/zvision/video.cpp index 9f98b14746..b3e32b7703 100644 --- a/engines/zvision/video.cpp +++ b/engines/zvision/video.cpp @@ -96,7 +96,7 @@ void ZVision::playVideo(Video::VideoDecoder &videoDecoder, const Common::Rect &d // Assume bilinear scaling. AKA calculate the scale from just the width. // Also assume that the scaling is in integral intervals. AKA no 1.5x scaling // TODO: Test ^these^ assumptions - uint scale = destRect.width() / origWidth; + scale = destRect.width() / origWidth; // TODO: Test if we need to support downscale. } |