diff options
Diffstat (limited to 'video/codecs/svq1.cpp')
| -rw-r--r-- | video/codecs/svq1.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/video/codecs/svq1.cpp b/video/codecs/svq1.cpp index 14452ab15b..41bd1dc507 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;  	} -	convertYUV410ToRGB(_surface, current[0], current[1], current[2], yWidth, yHeight, yWidth, uvWidth); +	YUVToRGBMan.convert410(_surface, 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++) {  | 
