From 0342332be06ab1fd029bb47aad4e9d9bc1aacd2b Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Sun, 17 Apr 2011 16:34:00 +0200 Subject: [PATCH] TOON: Prefer Surface::create taking a PixelFormat over the one taking a byte depth. --- engines/toon/movie.cpp | 2 +- engines/toon/toon.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/engines/toon/movie.cpp b/engines/toon/movie.cpp index 4305abb62b1..5ccfcbb8ec5 100644 --- a/engines/toon/movie.cpp +++ b/engines/toon/movie.cpp @@ -50,7 +50,7 @@ bool ToonstruckSmackerDecoder::loadFile(const Common::String &filename) { delete _surface; } _surface = new Graphics::Surface(); - _surface->create(640, 400, 1); + _surface->create(640, 400, Graphics::PixelFormat::createFormatCLUT8()); _header.flags = 4; } diff --git a/engines/toon/toon.cpp b/engines/toon/toon.cpp index 20406682450..c3613e3f526 100644 --- a/engines/toon/toon.cpp +++ b/engines/toon/toon.cpp @@ -57,7 +57,7 @@ void ToonEngine::init() { _hotspots = new Hotspots(this); _mainSurface = new Graphics::Surface(); - _mainSurface->create(TOON_BACKBUFFER_WIDTH, TOON_BACKBUFFER_HEIGHT, 1); + _mainSurface->create(TOON_BACKBUFFER_WIDTH, TOON_BACKBUFFER_HEIGHT, Graphics::PixelFormat::createFormatCLUT8()); _finalPalette = new uint8[768]; _backupPalette = new uint8[768];