From 09269fce8c61b8193b25266b681c7849a6ad058d Mon Sep 17 00:00:00 2001 From: Matthew Hoops Date: Tue, 18 Sep 2012 15:54:45 -0400 Subject: GRAPHICS: Implement different luminance ranges Bink and Theora are now much improved --- video/codecs/svq1.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'video/codecs/svq1.cpp') diff --git a/video/codecs/svq1.cpp b/video/codecs/svq1.cpp index 41bd1dc507..5f0f76ffb6 100644 --- a/video/codecs/svq1.cpp +++ b/video/codecs/svq1.cpp @@ -256,7 +256,7 @@ const Graphics::Surface *SVQ1Decoder::decodeImage(Common::SeekableReadStream *st _surface->h = _height; } - YUVToRGBMan.convert410(_surface, current[0], current[1], current[2], yWidth, yHeight, yWidth, uvWidth); + YUVToRGBMan.convert410(_surface, Graphics::YUVToRGBManager::kScaleFull, current[0], current[1], current[2], yWidth, yHeight, yWidth, uvWidth); // Store the current surfaces for later and free the old ones for (int i = 0; i < 3; i++) { -- cgit v1.2.3