From e53f2bf0b5115917befc1f120a6731bca30e2024 Mon Sep 17 00:00:00 2001 From: Simon Robertshaw Date: Thu, 9 May 2013 23:33:43 +0100 Subject: [PATCH] Forward resample argument correctly from VideoBuffer resize method --- src/graphics/Graphics.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graphics/Graphics.cpp b/src/graphics/Graphics.cpp index bacb421a7..09da9363c 100644 --- a/src/graphics/Graphics.cpp +++ b/src/graphics/Graphics.cpp @@ -47,7 +47,7 @@ void VideoBuffer::Resize(float factor, bool resample) { int newWidth = ((float)Width)*factor; int newHeight = ((float)Height)*factor; - Resize(newWidth, newHeight); + Resize(newWidth, newHeight, resample); } void VideoBuffer::Resize(int width, int height, bool resample, bool fixedRatio)