From b775c03c29f6b256e9e01c5481949bb11300ce3a Mon Sep 17 00:00:00 2001 From: Matthew Hoops Date: Wed, 30 Dec 2009 15:29:52 +0000 Subject: Use the special Cinepak YUV2RGB function in the Cinepak decoder. This makes the Riven videos match up with the backgrounds better. Thanks, Torbjorn\! svn-id: r46750 --- engines/mohawk/video/cinepak.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/mohawk') diff --git a/engines/mohawk/video/cinepak.cpp b/engines/mohawk/video/cinepak.cpp index 5bf5d342a4..dc287ff56c 100644 --- a/engines/mohawk/video/cinepak.cpp +++ b/engines/mohawk/video/cinepak.cpp @@ -33,7 +33,7 @@ namespace Mohawk { #define PUT_PIXEL(offset, lum, u, v) \ - Graphics::YUV2RGB(lum, u, v, r, g, b); \ + Graphics::CPYUV2RGB(lum, u, v, r, g, b); \ if (_pixelFormat.bytesPerPixel == 2) \ *((uint16 *)_curFrame.surface->pixels + offset) = _pixelFormat.RGBToColor(r, g, b); \ else \ -- cgit v1.2.3