diff options
author | Eugene Sandulenko | 2010-08-21 21:17:37 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2010-10-12 23:12:20 +0000 |
commit | e9d6fa094eb53b23132093fb9cc46cac7b958a38 (patch) | |
tree | c6701efe7d8495c84712f5df31d96b93812624d1 | |
parent | b9efb23e035a617652fa8b0452e38ccf86c14c6e (diff) | |
download | scummvm-rg350-e9d6fa094eb53b23132093fb9cc46cac7b958a38.tar.gz scummvm-rg350-e9d6fa094eb53b23132093fb9cc46cac7b958a38.tar.bz2 scummvm-rg350-e9d6fa094eb53b23132093fb9cc46cac7b958a38.zip |
SWORD25: Fix colors
svn-id: r53274
-rw-r--r-- | engines/sword25/sword25.cpp | 4 |
1 files 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; |