diff options
author | Johannes Schickel | 2015-12-14 05:14:48 +0100 |
---|---|---|
committer | Johannes Schickel | 2015-12-14 05:16:12 +0100 |
commit | 6dabb5c414de8931c989a8fe5b0ac3eef3b67ac0 (patch) | |
tree | 226b97e50b64eb4f344cbce62d463b23e5d0072f /engines/sword25 | |
parent | 69220505b6109227984f0d5de97180e989d1adce (diff) | |
download | scummvm-rg350-6dabb5c414de8931c989a8fe5b0ac3eef3b67ac0.tar.gz scummvm-rg350-6dabb5c414de8931c989a8fe5b0ac3eef3b67ac0.tar.bz2 scummvm-rg350-6dabb5c414de8931c989a8fe5b0ac3eef3b67ac0.zip |
SWORD25: Call requested pixel format by its correct name.
Diffstat (limited to 'engines/sword25')
-rw-r--r-- | engines/sword25/sword25.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sword25/sword25.cpp b/engines/sword25/sword25.cpp index 76142c2534..5223481d50 100644 --- a/engines/sword25/sword25.cpp +++ b/engines/sword25/sword25.cpp @@ -95,7 +95,7 @@ Common::Error Sword25Engine::run() { } Common::Error Sword25Engine::appStart() { - // Initialize the graphics mode to ARGB8888 + // Initialize the graphics mode to RGBA8888 Graphics::PixelFormat format = Graphics::PixelFormat(4, 8, 8, 8, 8, 24, 16, 8, 0); initGraphics(800, 600, true, &format); if (format != g_system->getScreenFormat()) |