From e9d6fa094eb53b23132093fb9cc46cac7b958a38 Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Sat, 21 Aug 2010 21:17:37 +0000 Subject: SWORD25: Fix colors svn-id: r53274 --- engines/sword25/sword25.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engines/sword25/sword25.cpp b/engines/sword25/sword25.cpp index 5a4e2bebad..0c9279abf3 100644 --- a/engines/sword25/sword25.cpp +++ b/engines/sword25/sword25.cpp @@ -85,8 +85,8 @@ Common::Error Sword25Engine::AppStart(const Common::StringArray &CommandParamete // All log messages will be sent to StdOut BS_Log::RegisterLogListener(LogToStdout); - // Initialise the graphics mode to RGBA8888 - Graphics::PixelFormat format = Graphics::PixelFormat(4, 8, 8, 8, 8, 24, 16, 8, 0); + // Initialise the graphics mode to ARGB8888 + Graphics::PixelFormat format = Graphics::PixelFormat(4, 8, 8, 8, 8, 0, 8, 16, 24); initGraphics(800, 600, true, &format); if (format != g_system->getScreenFormat()) return Common::kUnsupportedColorMode; -- cgit v1.2.3